Package org.exist.xquery

Examples of org.exist.xquery.CachedResult


            } else {
                contextStep.setPreloadedData(contextSequence.getDocumentSet(), preselectResult);
                result = path.eval(contextSequence).toNodeSet();
            }
            if(canCache && contextSequence.isCacheable())
        {cached = new CachedResult(contextSequence, contextItem, result);}

    // otherwise we have to walk through each item in the context
    } else {
      Item current;
      final @SuppressWarnings("unused")
View Full Code Here


                contextStep.setPreloadedData(contextSequence.getDocumentSet(), preselectResult);
                result = path.eval(contextSequence).toNodeSet();
            }

            if(canCache && contextSequence != null && contextSequence.isCacheable()) {
                cached = new CachedResult(contextSequence, contextItem, result);
            }

    // otherwise we have to walk through each item in the context
    } else {
      Item current;
View Full Code Here

TOP

Related Classes of org.exist.xquery.CachedResult

Copyright © 2018 www.massapicom. 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.