| org.jboss.mq.pm.CacheStore
All known Subclasses: org.jboss.mq.pm.none.PersistenceManager, org.jboss.mq.pm.jdbc2.PersistenceManager,
CacheStore | public interface CacheStore (Code) | | A cache store.
author: Hiram Chirino (Cojonudo14@hotmail.com) author: Paul Kendall (paul.kendall@orion.co.nz) author: Adrian Brock version: $Revision: 57198 $ |
loadFromStorage | SpyMessage loadFromStorage(MessageReference mh) throws JMSException(Code) | | Reads the message refered to by the MessagReference back as a SpyMessage
Parameters: mh - the message reference the message throws: JMSException - for any error |
removeFromStorage | void removeFromStorage(MessageReference mh) throws JMSException(Code) | | Removes the message that was stored in secondary storage.
Parameters: mh - the message reference throws: JMSException - for any error |
saveToStorage | void saveToStorage(MessageReference mh, SpyMessage message) throws JMSException(Code) | | Stores the given message to secondary storeage. You should be able to use
the MessagReference to load the message back later.
Parameters: mh - the message reference Parameters: message - the message throws: JMSException - for any error |
|
|