Package org.teiid.transport
Interface ChannelListener
-
- All Known Implementing Classes:
ODBCClientInstance,SocketClientInstance
public interface ChannelListener
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceChannelListener.ChannelListenerFactory
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddisconnected()voidexceptionOccurred(Throwable t)voidonConnection(SSLEngine engine)voidreceivedMessage(Object msg)
-
-
-
Method Detail
-
receivedMessage
void receivedMessage(Object msg) throws CommunicationException
- Throws:
CommunicationException
-
exceptionOccurred
void exceptionOccurred(Throwable t)
-
disconnected
void disconnected()
-
onConnection
void onConnection(SSLEngine engine) throws CommunicationException
- Throws:
CommunicationException
-
-