Package org.voltdb.utils

Examples of org.voltdb.utils.PersistentBinaryDeque


    private final BinaryDeque m_persistentDeque;

    private final String m_nonce;

    public StreamBlockQueue(String path, String nonce) throws java.io.IOException {
        m_persistentDeque = new PersistentBinaryDeque( nonce, new VoltFile(path));
        m_nonce = nonce;
    }
View Full Code Here

TOP

Related Classes of org.voltdb.utils.PersistentBinaryDeque

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.