1 /*2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.3 */4 package com.tc.memorydatastore.client;5 6 import java.util.Collection ;7 8 public interface MemoryDataMap {9 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 }19