com.hazelcast.storage
Interface Storage<REF extends DataRef>


public interface Storage<REF extends DataRef>

Plain storage interface for off-heap, disk etc access. Note: Can be extended to allow querying stored items...


Method Summary
 void destroy()
           
 Data get(int hash, REF ref)
           
 REF put(int hash, Data data)
           
 void remove(int hash, REF ref)
           
 

Method Detail

put

REF put(int hash,
        Data data)

get

Data get(int hash,
         REF ref)

remove

void remove(int hash,
            REF ref)

destroy

void destroy()


Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.