KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > l2 > objectserver > NonReplicatedObjectManager


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.objectserver;
6
7 import com.tc.net.groups.NodeID;
8
9 public class NonReplicatedObjectManager implements ReplicatedObjectManager {
10
11   public void query(NodeID nodeID) {
12     // Nop
13
}
14
15   public boolean relayTransactions() {
16     return false;
17   }
18
19   public void sync() {
20     // Nop
21
}
22
23 }
24
Popular Tags