KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > net > protocol > delivery > OnceAndOnlyOnceProtocolNetworkLayer


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.net.protocol.delivery;
5
6 import com.tc.net.protocol.NetworkLayer;
7 import com.tc.net.protocol.transport.MessageTransportListener;
8
9 /**
10  * This is not a very intersting interface. It's here to allow testing of the once and only once network stack harness with
11  * mock objects. The stack harness needs to treat the OOOP network layer as both a network layer and a transport
12  * listener, hence this interface which combines the two.
13  */

14 public interface OnceAndOnlyOnceProtocolNetworkLayer extends NetworkLayer, MessageTransportListener {
15   //
16
}
17
Popular Tags