Package org.gridgain.grid.kernal.processors.cache.GridCacheTxEx

Examples of org.gridgain.grid.kernal.processors.cache.GridCacheTxEx.FinalizationStatus


                break;

            case RECOVERY_WAIT:
                finalizing.compareAndSet(NONE, RECOVERY_WAIT);

                FinalizationStatus cur = finalizing.get();

                res = cur == RECOVERY_WAIT || cur == RECOVERY_FINISH;

                break;

            case RECOVERY_FINISH:
                FinalizationStatus old = finalizing.get();

                res = old != USER_FINISH && finalizing.compareAndSet(old, status);

                break;
View Full Code Here

TOP

Related Classes of org.gridgain.grid.kernal.processors.cache.GridCacheTxEx.FinalizationStatus

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.