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
Modifier and TypeMethodDescriptionFactory method: Returns a new BinaryStore.voiddestroyBinaryStore(BinaryStore store) Lifecycle method: Destroy a BinaryStore previously created by this manager. 
- 
Method Details
- 
createBinaryStore
BinaryStore createBinaryStore()Factory method: Returns a new BinaryStore.- Returns:
 - a new BinaryStore object
 
 - 
destroyBinaryStore
Lifecycle method: Destroy a BinaryStore previously created by this manager.- Parameters:
 store- a BinaryStore object previously created by this manager
 
 -