| com.tc.net.protocol.tcm.MessageChannel
All known Subclasses: com.tc.net.protocol.tcm.AbstractMessageChannel, com.tc.net.protocol.tcm.TestMessageChannel,
MessageChannel | public interface MessageChannel (Code) | | Outward facing message channel interface. This is the interface that most high level application code wants to deal
with, as opposed to the MessageChannelInternal interface which has some extra noise
author: teck |
addAttachment | public void addAttachment(String key, Object value, boolean replace)(Code) | | Attach anonymous data to this channel with the given key
Parameters: key - the key for the attachment Parameters: value - the data to attach Parameters: replace - true if we should not check if a mapping already exists, else false |
close | public void close()(Code) | | |
isClosed | public boolean isClosed()(Code) | | |
isConnected | public boolean isConnected()(Code) | | |
isOpen | public boolean isOpen()(Code) | | |
removeAttachment | public Object removeAttachment(String key)(Code) | | Remove anonymous data from this channel
the attachement object removed (if any) |
|
|