Package net.sf.joafip.kvstore.record.service

Examples of net.sf.joafip.kvstore.record.service.DataRecordKeyManager


  public AbstractTesDataMgrWithKey(final String name) throws TestException {
    super(name);
  }

  public void testUseAsAMap() throws HeapException {
    final DataRecordKeyManager keyManager = DataRecordKeyManager
        .getInstance();
    createFileHeapDataManager(true);
    heapDataManager.setDataRecordKeyManager(keyManager);
    final DataRecordIdentifier keyA = keyManager.createKey("A");
    assertFalse("must not found 'A'", heapDataManager.hasDataRecord(keyA));
    final byte[] dataA = "valueA".getBytes();
    heapDataManager.writeDataRecord(keyA, dataA);
    assertTrue("must found 'A'", heapDataManager.hasDataRecord(keyA));
    final byte[] readDataA = heapDataManager.readDataRecord(keyA);
View Full Code Here

TOP

Related Classes of net.sf.joafip.kvstore.record.service.DataRecordKeyManager

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.