Package com.esri.gpt.control.webharvest.client.waf

Examples of com.esri.gpt.control.webharvest.client.waf.DestroyableResource.destroy()


    LOGGER.log(Level.FINER, "Executing query: {0}", this);
    final DestroyableResource root = new DCATRootResource(context, info);
    Result r = new CommonResult(new LimitedLengthResourcesAdapter(root,criteria.getMaxRecords())) {
        @Override
        public void destroy() {
          root.destroy();
          info.destroy();
        }
    };
    LOGGER.log(Level.FINER, "Completed query execution: {0}", this);
    return r;
View Full Code Here


    LOGGER.log(Level.FINER, "Executing query: {0}", this);
    final DestroyableResource rootFolder = new TFolder(context, info, proxy, criteria, new HashSet<String>());
    Result r = new CommonResult(new LimitedLengthResourcesAdapter(rootFolder,criteria.getMaxRecords())) {
        @Override
        public void destroy() {
          rootFolder.destroy();
          info.destroy();
        }
    };
    LOGGER.log(Level.FINER, "Completed query execution: {0}", this);
    return r;
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.