Package org.voltdb

Examples of org.voltdb.SnapshotCompletionInterest


    watchSnapshot(final String nonce)
    {
        final SettableFuture<SnapshotCompletionInterest.SnapshotCompletionEvent> result =
            SettableFuture.create();

        SnapshotCompletionInterest interest = new SnapshotCompletionInterest() {
            @Override
            public CountDownLatch snapshotCompleted(SnapshotCompletionEvent event)
            {
                if (event.nonce.equals(nonce) && event.didSucceed) {
                    VoltDB.instance().getSnapshotCompletionMonitor().removeInterest(this);
View Full Code Here

TOP

Related Classes of org.voltdb.SnapshotCompletionInterest

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.