Package com.tangosol.io
Interface BinaryStoreManager
-
- All Known Implementing Classes:
AbstractStoreManager
,AsyncBinaryStoreManager
,BerkeleyDBBinaryStoreManager
,MappedStoreManager
public interface BinaryStoreManager
A manager that is capable of creating and destroying BinaryStore objects.- Since:
- Coherence 2.4
- Author:
- cp 2004.05.05
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BinaryStore
createBinaryStore()
Factory method: Returns a new BinaryStore.void
destroyBinaryStore(BinaryStore store)
Lifecycle method: Destroy a BinaryStore previously created by this manager.
-
-
-
Method Detail
-
createBinaryStore
BinaryStore createBinaryStore()
Factory method: Returns a new BinaryStore.- Returns:
- a new BinaryStore object
-
destroyBinaryStore
void destroyBinaryStore(BinaryStore store)
Lifecycle method: Destroy a BinaryStore previously created by this manager.- Parameters:
store
- a BinaryStore object previously created by this manager
-
-