Package net.sf.ehcache.constructs.nonstop

Examples of net.sf.ehcache.constructs.nonstop.ThrowTimeoutException


            switch (nonstopConfiguration.getTimeoutBehavior().getTimeoutBehaviorType()) {
                case NOOP:
                case LOCAL_READS:
                    // for noop and localReads, make the executor service rethrow as TimeoutException,
                    // so that appropriate action according to behavior can be done
                    throw new ThrowTimeoutException();
                default:
                    // always throw InvalidLockStateAfterRejoinException for exception-on-timeout behavior
                    throw new InvalidLockStateAfterRejoinException();
            }
        } else {
View Full Code Here

TOP

Related Classes of net.sf.ehcache.constructs.nonstop.ThrowTimeoutException

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.