public class MemoryPersistenceStrategy extends Object implements QueuePersistenceStrategy
QueuePersistenceStrategy.Holder
Constructor and Description |
---|
MemoryPersistenceStrategy() |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the store.
|
protected Object |
getId(Object obj) |
boolean |
isTransient() |
Object |
load(String queue,
Object id)
Loads an object specified by the given id.
|
void |
open()
Open the store.
|
void |
remove(String queue,
Object id)
Removes the object specified by the given id from the store.
|
List |
restore()
Retrieves the ids of the stored objects.
|
Object |
store(String queue,
Object obj)
Stores an object and returns its generated id.
|
public Object store(String queue, Object obj) throws IOException
QueuePersistenceStrategy
store
in interface QueuePersistenceStrategy
obj
- the object to be storedIOException
public Object load(String queue, Object id) throws IOException
QueuePersistenceStrategy
load
in interface QueuePersistenceStrategy
id
- the id of the stored objectIOException
public void remove(String queue, Object id) throws IOException
QueuePersistenceStrategy
remove
in interface QueuePersistenceStrategy
id
- the id of the stored objectIOException
public List restore() throws IOException
QueuePersistenceStrategy
restore
in interface QueuePersistenceStrategy
IOException
public void open() throws IOException
QueuePersistenceStrategy
open
in interface QueuePersistenceStrategy
IOException
public void close() throws IOException
QueuePersistenceStrategy
close
in interface QueuePersistenceStrategy
IOException
public boolean isTransient()
isTransient
in interface QueuePersistenceStrategy
Copyright © 2003–2013 MuleSource, Inc.. All rights reserved.