KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > net > protocol > tcm > MessageChannelInternal


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.tcm;
5
6 import com.tc.net.protocol.NetworkLayer;
7 import com.tc.net.protocol.transport.MessageTransportListener;
8
9 /**
10  * The internal (comms-side) interface to the message channel. It acts like the bottom half of a NetworkLayer in that it
11  * sends and receives messages -- but there's not a proper NetworkLayer above it to pass messages up to. It needs to be
12  * a MessageTransportListener since in some stack configurations, it needs to respond to transport events
13  *
14  * @author teck
15  */

16 public interface MessageChannelInternal extends NetworkLayer, MessageChannel, MessageTransportListener {
17   //
18
}
Popular Tags