Package org.glassfish.enterprise.concurrent

Examples of org.glassfish.enterprise.concurrent.ContextServiceImpl


        return transactionSetupProvider;
    }

    @Override
    void startValue(StartContext context) throws StartException {
        contextService = new ContextServiceImpl(name, contextSetupProvider.getValue(), transactionSetupProvider.getOptionalValue());
    }
View Full Code Here


    void stopValue(StopContext context) {
        contextService = null;
    }

    public ContextServiceImpl getValue() throws IllegalStateException {
        final ContextServiceImpl value = this.contextService;
        if (value == null) {
            throw EeLogger.ROOT_LOGGER.concurrentServiceValueUninitialized();
        }
        return value;
    }
View Full Code Here

TOP

Related Classes of org.glassfish.enterprise.concurrent.ContextServiceImpl

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.