Package com.volantis.shared.recovery

Examples of com.volantis.shared.recovery.RecoverableTransactionStack


        this.pipelineFactory = pipelineFactory;
        this.pipelineConfiguration = pipelineConfiguration;
        this.expressionContext = (SimpleExpressionContext) expressionContext;

        flowControlManager = pipelineFactory.createFlowControlManager();
        baseURIs = new RecoverableTransactionStack();
        locators = new RecoverableTransactionStack();
//        objects = this.expressionContext.getObjectStack();
//        properties = new RecoverableComplexPropertyContainer();

        tracker = new TransactionTracker();
View Full Code Here


            ExpressionFactory factory,
            NamespacePrefixTracker namespacePrefixTracker) {
        this.factory = factory;
        this.namespacePrefixTracker = namespacePrefixTracker;

        frames = new RecoverableTransactionStack();
        globalScope = factory.createExpressionScope(null);
    }
View Full Code Here

     * @param rootEnvironmentInteraction the root EnvironmentInteraction
     */
    public SimpleEnvironmentInteractionTracker(
            EnvironmentInteraction rootEnvironmentInteraction) {

        environmentInteractions = new RecoverableTransactionStack();
        if (rootEnvironmentInteraction != null) {
            pushEnvironmentInteraction(rootEnvironmentInteraction);
        }
    }
View Full Code Here

TOP

Related Classes of com.volantis.shared.recovery.RecoverableTransactionStack

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.