Package org.voltdb.utils

Examples of org.voltdb.utils.FixedDBBPool


                poolSize = userPoolSize;
            } else {
                poolSize = 3;
            }

            m_snapshotBufPool = new FixedDBBPool();
            // Create a buffer pool for uncompressed stream snapshot data
            m_snapshotBufPool.allocate(SnapshotSiteProcessor.m_snapshotBufferLength, poolSize);
            // Create a buffer pool for compressed stream snapshot data
            m_snapshotBufPool.allocate(SnapshotSiteProcessor.m_snapshotBufferCompressedLen, poolSize);
        }
View Full Code Here

TOP

Related Classes of org.voltdb.utils.FixedDBBPool

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.