Package org.voltdb.utils

Examples of org.voltdb.utils.NotImplementedException


    public void trackingFinish(Long txnId) throws EEException {
        throw new NotImplementedException("Read/Write Set Tracking is disabled for IPC ExecutionEngine");
    }
    @Override
    public VoltTable trackingReadSet(Long txnId) throws EEException {
        throw new NotImplementedException("Read/Write Set Tracking is disabled for IPC ExecutionEngine");
    }
View Full Code Here


    public VoltTable trackingReadSet(Long txnId) throws EEException {
        throw new NotImplementedException("Read/Write Set Tracking is disabled for IPC ExecutionEngine");
    }
    @Override
    public VoltTable trackingWriteSet(Long txnId) throws EEException {
        throw new NotImplementedException("Read/Write Set Tracking is disabled for IPC ExecutionEngine");
    }
View Full Code Here

        throw new NotImplementedException("Read/Write Set Tracking is disabled for IPC ExecutionEngine");
    }
   
    @Override
    public void antiCacheInitialize(File dbFilePath, long blockSize) throws EEException {
        throw new NotImplementedException("Anti-Caching is disabled for IPC ExecutionEngine");
    }
View Full Code Here

        throw new NotImplementedException("Anti-Caching is disabled for IPC ExecutionEngine");
    }

    @Override
    public void antiCacheReadBlocks(Table catalog_tbl, short[] block_ids, int[] tuple_offsets) {
        throw new NotImplementedException("Anti-Caching is disabled for IPC ExecutionEngine");
    }
View Full Code Here

        throw new NotImplementedException("Anti-Caching is disabled for IPC ExecutionEngine");
    }

    @Override
    public void antiCacheMergeBlocks(Table catalog_tbl) {
        throw new NotImplementedException("Anti-Caching is disabled for IPC ExecutionEngine");
    }
View Full Code Here

        throw new NotImplementedException("Anti-Caching is disabled for IPC ExecutionEngine");
    }

    @Override
    public VoltTable antiCacheEvictBlock(Table catalog_tbl, long block_size, int num_blocks) {
        throw new NotImplementedException("Anti-Caching is disabled for IPC ExecutionEngine");
    }
View Full Code Here

    }


    @Override
    public VoltTable antiCacheEvictBlockInBatch(Table catalog_tbl, Table child_tbl, long block_size, int num_blocks) {
        throw new NotImplementedException("Anti-Caching is disabled for IPC ExecutionEngine");
  }
View Full Code Here

  }

   
    @Override
    public void MMAPInitialize(File dbDir, long mapSize, long syncFrequency) throws EEException {
        throw new NotImplementedException("Storage MMAP is disabled for IPC ExecutionEngine");
    }
View Full Code Here

    }
   
    // ARIES
    @Override
    public void ARIESInitialize(File dbDir, File logFile) throws EEException {
        throw new NotImplementedException("ARIES recovery is disabled for IPC ExecutionEngine");
    }
View Full Code Here

    }
   
    @Override
    public long getArieslogBufferLength() {
        // XXX: do nothing, we only implement this for JNI now.
        throw new NotImplementedException("ARIES recovery is disabled for IPC ExecutionEngine");
    }
View Full Code Here

TOP

Related Classes of org.voltdb.utils.NotImplementedException

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.