Package net.sf.joafip.kvstore.service

Examples of net.sf.joafip.kvstore.service.HeapRuntimeException


  public boolean add(final DataRecordIdentifier dataRecordIdentifier) {
    try {
      return heapDataManagerForSet.writeDataRecord(dataRecordIdentifier,
          DATA);
    } catch (HeapException exception) {
      throw new HeapRuntimeException(exception);
    }
  }
View Full Code Here


  public boolean remove(final Object object) {
    final DataRecordIdentifier dataRecordIdentifier = (DataRecordIdentifier) object;
    try {
      return heapDataManagerForSet.deleteDataRecord(dataRecordIdentifier);
    } catch (HeapException exception) {
      throw new HeapRuntimeException(exception);
    }
  }
View Full Code Here

  @Override
  public void clear() {
    try {
      heapDataManagerForSet.clear();
    } catch (HeapException exception) {
      throw new HeapRuntimeException(exception);
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.kvstore.service.HeapRuntimeException

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.