01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.net.protocol.tcm;
05:
06: import com.tc.net.protocol.NetworkLayer;
07: import com.tc.net.protocol.transport.MessageTransportListener;
08:
09: /**
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,
17: MessageChannel, MessageTransportListener {
18: //
19: }
|