Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Evictor.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc"]]
13 
14 #include <Ice/ObjectAdapterF.ice>
15 #include <Ice/ServantLocator.ice>
16 #include <Ice/Identity.ice>
17 #include <Freeze/Exception.ice>
18 
19 module Freeze
20 {
21 
30 local interface ServantInitializer
31 {
53  void initialize(Ice::ObjectAdapter adapter, Ice::Identity identity, string facet, Object servant);
54 };
55 
56 
62 local exception NoSuchElementException
63 {
64 };
65 
76 local interface EvictorIterator
77 {
89  bool hasNext();
90 
103  Ice::Identity next();
104 };
105 
112 {
113 };
114 
115 
130 local interface Evictor extends Ice::ServantLocator
131 {
132 
154  void setSize(int sz);
155 
168  int getSize();
169 
170 
197  Object* add(Object servant, Ice::Identity id);
198 
229  Object* addFacet(Object servant, Ice::Identity id, string facet);
230 
231  //
232  // Note: no UUID operation as we don't know the category or
233  // categories this evictor was registered with.
234  //
235 
256  Object remove(Ice::Identity id);
257 
283  Object removeFacet(Ice::Identity id, string facet);
284 
299  bool hasObject(Ice::Identity id);
300 
316  bool hasFacet(Ice::Identity id, string facet);
317 
335  EvictorIterator getIterator(string facet, int batchSize);
336 };
337 
338 };
339 
A servant initializer provides the application with an opportunity to perform custom servant initiali...
Definition: Evictor.ice:30
The identity of an Ice object.
Definition: Identity.ice:28
An automatic Ice object persistence manager, based on the evictor pattern.
Definition: Evictor.ice:130
This exception is raised if the evictor has been deactivated.
Definition: Evictor.ice:111
A servant locator is called by an object adapter to locate a servant that is not found in its active ...
Definition: ServantLocator.ice:31
This exception is raised if there are no further elements in the iteration.
Definition: Evictor.ice:62
An iterator for the objects managed by the evictor.
Definition: Evictor.ice:76
Freeze provides automatic persistence for Ice servants.
Definition: BackgroundSaveEvictor.ice:16
The object adapter provides an up-call interface from the Ice run time to the implementation of Ice o...
Definition: ObjectAdapter.ice:38