allGraphIds |
- (id <ECIterator>) allGraphIds;
createGraphWithId: |
create a graph using the given id
- (id <FTGraph>) createGraphWithId: (id <FTId> ) graphId;
graphId
- underlying id to use
graphWithId: |
load the graph with the given id
- (id <FTGraph>) graphWithId: (id <FTId>) graphId;
initForServer:withGraphIdToGraphDatabase: |
initializes the receiver handing off its database
See Also:
- initWithDatabase
- initForServer: (FTServerImpl *) theServer withGraphIdToGraphDatabase: (BDBDatabase *) theDatabase;
theServer
- the server under which this instance runs
theDatabase
- reference to the graphidToGraph database
initWithDatabase |
initializes the receiver handing off its database
See Also:
- initForServer:withGraphIdToGraphDatabase:
- initForServer: (FTServerImpl *) theServer withGraphIdToGraphDatabase: (BDBDatabase *) theDatabase;
theServer
- the server under which this instance runs
theDatabase
- reference to the graphidToGraph database
lookupGraphWithId: |
return the graph corresponding to the given id, if existent
- (FTGraphImpl *) lookupGraphWithId: (id <FTId>) graphId;
releaseGraph: |
Informs the receiver that a graph may be removed from the cache
- (void) releaseGraph: (FTGraphImpl *) item;
item
- item to remove
removeGraphWithId: |
removes the specified graph or does nothing, if the graph does not exist
- removeGraphWithId: (id <FTId>) graphId;
graphId
- id of graph to remove
graphIdToGraphCache |
ECCache *graphIdToGraphCache;
Contains all graphs being in memory at present
(Last Updated August 27, 2006)