Examples of lockRefresh()


Examples of org.vfny.geoserver.global.Data.lockRefresh()

        if (request.getLockId() != null) {
            if (request.getReleaseAction() == TransactionRequest.ALL) {
                catalog.lockRelease(request.getLockId());
            } else if (request.getReleaseAction() == TransactionRequest.SOME) {
                catalog.lockRefresh(request.getLockId());
            }
        }
    }

    /* (non-Javadoc)
 
View Full Code Here

Examples of org.vfny.geoserver.global.Data.lockRefresh()

                Data catalog = gs.getData();

                if (request.getReleaseAction() == TransactionRequest.ALL) {
                    catalog.lockRelease(request.getLockId());
                } else if (request.getReleaseAction() == TransactionRequest.SOME) {
                    catalog.lockRefresh(request.getLockId());
                }
            }
        }

        request = null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.