org.mpisws.p2p.transport.table
Interface TableStore<Key,Value>

Type Parameters:
Key -
Value -

public interface TableStore<Key,Value>

A subset of the functionality of java.util.Map. The idea is that you can optionally use an implementation of Map.

Author:
Jeff Hoye

Method Summary
 boolean containsKey(Key key)
           
 Value get(Key k)
           
 Value put(Key k, Value v)
           
 

Method Detail

containsKey

boolean containsKey(Key key)

put

Value put(Key k,
          Value v)

get

Value get(Key k)


Copyright © 2010. All Rights Reserved.