Package com.tangosol.io
Interface BinaryStoreManager
- 
- All Known Implementing Classes:
 AbstractJournalRM,AbstractStoreManager,AsyncBinaryStoreManager,BackupJournalRM,BerkeleyDBBinaryStoreManager,DirectStoreManager,FlashJournalRM,MappedStoreManager,RamJournalRM
public interface BinaryStoreManagerA 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 BinaryStorecreateBinaryStore()Factory method: Returns a new BinaryStore.voiddestroyBinaryStore(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
 
 - 
 
 -