Interface CommandCollector<K,V>
-
- All Known Implementing Classes:
ReplicationCommandTransmitterWithList,ReplicationCommandTransmitterWithMap
public interface CommandCollector<K,V>- Author:
- Mahesh Kannan
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddCommand(Command<K,V> cmd)voidclose()voidinitialize(java.lang.String targetName, DataStoreContext<K,V> rsInfo)voidremoveCommand(Command<K,V> cmd)
-
-
-
Method Detail
-
initialize
void initialize(java.lang.String targetName, DataStoreContext<K,V> rsInfo)
-
close
void close()
-
addCommand
void addCommand(Command<K,V> cmd) throws DataStoreException
- Throws:
DataStoreException
-
removeCommand
void removeCommand(Command<K,V> cmd) throws DataStoreException
- Throws:
DataStoreException
-
-