KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > l2 > api > L2Coordinator


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

5 package com.tc.l2.api;
6
7 import com.tc.l2.objectserver.ReplicatedObjectManager;
8 import com.tc.l2.state.StateManager;
9 import com.tc.net.groups.GroupManager;
10
11 public interface L2Coordinator {
12
13   public void start();
14
15   public ReplicatedClusterStateManager getReplicatedClusterStateManager();
16
17   public ReplicatedObjectManager getReplicatedObjectManager();
18
19   public StateManager getStateManager();
20
21   public GroupManager getGroupManager();
22
23 }
24
Popular Tags