An automatic Ice object persistence manager, based on the evictor pattern.
More...
Defined in <Freeze/Evictor.ice>
local interface Evictor extends Ice::ServantLocator { ... }
|
Object * | add (Object servant, Ice::Identity id) |
| Add a servant to this evictor. More...
|
|
Object * | addFacet (Object servant, Ice::Identity id, string facet) |
| Like add, but with a facet. More...
|
|
EvictorIterator | getIterator (string facet, int batchSize) |
| Get an iterator for the identities managed by the evictor. More...
|
|
int | getSize () |
| Get the size of the evictor's servant queue. More...
|
|
bool | hasFacet (Ice::Identity id, string facet) |
| Like hasObject, but with a facet. More...
|
|
bool | hasObject (Ice::Identity id) |
| Returns true if the given identity is managed by the evictor with the default facet. More...
|
|
Object | remove (Ice::Identity id) |
| Permanently destroy an Ice object. More...
|
|
Object | removeFacet (Ice::Identity id, string facet) |
| Like remove, but with a facet. More...
|
|
void | setSize (int sz) |
| Set the size of the evictor's servant queue. More...
|
|
void | deactivate (string category) |
| Called when the object adapter in which this servant locator is installed is destroyed. More...
|
|
void | finished (Current curr, Object servant, LocalObject cookie) |
| Called by the object adapter after a request has been made. More...
|
|
Object | locate (Current curr, out LocalObject cookie) |
| Called before a request is dispatched if a servant cannot be found in the object adapter's active servant map. More...
|
|
An automatic Ice object persistence manager, based on the evictor pattern.
The evictor is a servant locator implementation that stores the persistent state of its objects in a database. Any number of objects can be registered with an evictor, but only a configurable number of servants are active at a time. These active servants reside in a queue; the least recently used servant in the queue is the first to be evicted when a new servant is activated.
- See also
- ServantInitializer
◆ add()
Add a servant to this evictor.
The state of the servant passed to this operation will be saved in the evictor's persistent store.
- Parameters
-
servant | The servant to add. |
id | The identity of the Ice object that is implemented by the servant. |
- Returns
- A proxy that matches the given identity and this evictor's object adapter.
- Exceptions
-
- See also
- addFacet
-
remove
-
removeFacet
◆ addFacet()
Object* addFacet |
( |
Object |
servant, |
|
|
Ice::Identity |
id, |
|
|
string |
facet |
|
) |
| |
Like add, but with a facet.
Calling add(servant, id)
is equivalent to calling addFacet with an empty facet.
- Parameters
-
servant | The servant to add. |
id | The identity of the Ice object that is implemented by the servant. |
facet | The facet. An empty facet means the default facet. |
- Returns
- A proxy that matches the given identity and this evictor's object adapter.
- Exceptions
-
- See also
- add
-
remove
-
removeFacet
◆ getIterator()
Get an iterator for the identities managed by the evictor.
- Parameters
-
facet | The facet. An empty facet means the default facet. |
batchSize | Internally, the Iterator retrieves the identities in batches of size batchSize. Selecting a small batchSize can have an adverse effect on performance. |
- Returns
- A new iterator.
- Exceptions
-
◆ getSize()
Get the size of the evictor's servant queue.
- Returns
- The size of the servant queue.
- Exceptions
-
- See also
- setSize
◆ hasFacet()
Like hasObject, but with a facet.
Calling hasObject(id)
is equivalent to calling hasFacet with an empty facet.
- Returns
- true if the identity is managed by the evictor for the given facet, false otherwise.
- Exceptions
-
◆ hasObject()
Returns true if the given identity is managed by the evictor with the default facet.
- Returns
- true if the identity is managed by the evictor, false otherwise.
- Exceptions
-
◆ remove()
Permanently destroy an Ice object.
- Parameters
-
id | The identity of the Ice object. |
- Returns
- The removed servant.
- Exceptions
-
- See also
- add
-
removeFacet
◆ removeFacet()
Like remove, but with a facet.
Calling remove(id)
is equivalent to calling removeFacet with an empty facet.
- Parameters
-
id | The identity of the Ice object. |
facet | The facet. An empty facet means the default facet. |
- Returns
- The removed servant.
- Exceptions
-
- See also
- remove
-
addFacet
◆ setSize()
Set the size of the evictor's servant queue.
This is the maximum number of servants the evictor keeps active. Requests to set the queue size to a value smaller than zero are ignored.
- Parameters
-
sz | The size of the servant queue. If the evictor currently holds more than sz servants in its queue, it evicts enough servants to match the new size. Note that this operation can block if the new queue size is smaller than the current number of servants that are servicing requests. In this case, the operation waits until a sufficient number of servants complete their requests. |
- Exceptions
-
- See also
- getSize
The documentation for this interface was generated from the following file: