KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > persistence > api > Persistor


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.objectserver.persistence.api;
5
6 import com.tc.io.serializer.api.StringIndex;
7
8
9 public interface Persistor {
10   public void close();
11
12   public PersistenceTransactionProvider getPersistenceTransactionProvider();
13
14   public ClientStatePersistor getClientStatePersistor();
15
16   public ManagedObjectPersistor getManagedObjectPersistor();
17
18   public TransactionPersistor getTransactionPersistor();
19
20   public PersistentSequence getGlobalTransactionIDSequence();
21   
22   public ClassPersistor getClassPersistor();
23   
24   public StringIndex getStringIndex();
25   
26   public PersistentCollectionFactory getPersistentCollectionFactory();
27   
28   public PersistentMapStore getClusterStateStore();
29 }
30
Popular Tags