Package com.swiftmq.swiftlet.store
Interface StoreReadTransaction
-
- All Superinterfaces:
StoreTransaction
- All Known Implementing Classes:
CompositeStoreTransaction
public interface StoreReadTransaction extends StoreTransaction
A transaction to read persistent messages out of a persistent store.- Author:
- IIT GmbH, Bremen/Germany, Copyright (c) 2000-2002, All Rights Reserved
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
remove(java.lang.Object key)
Remove a read message out of the store.
-
-
-
Method Detail
-
remove
void remove(java.lang.Object key) throws StoreException
Remove a read message out of the store.- Parameters:
key
- the key.- Throws:
StoreException
- on error.
-
-