01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.memorydatastore.client;
05:
06: import java.util.Collection;
07:
08: public interface MemoryDataMap {
09: void put(byte[] key, byte[] value);
10:
11: byte[] get(byte[] key);
12:
13: Collection getAll(byte[] key);
14:
15: void remove(byte[] key);
16:
17: void removeAll(byte[] key);
18: }
|