Package org.voltdb.sysprocs.saverestore

Examples of org.voltdb.sysprocs.saverestore.NativeSnapshotWritePlan


            }
        }

        SnapshotWritePlan plan;
        if (format == SnapshotFormat.NATIVE) {
            plan = new NativeSnapshotWritePlan();
        }
        else if (format == SnapshotFormat.CSV) {
            plan = new CSVSnapshotWritePlan();
        }
        else if (format == SnapshotFormat.STREAM) {
View Full Code Here

TOP

Related Classes of org.voltdb.sysprocs.saverestore.NativeSnapshotWritePlan

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.