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 interface
ChannelListener.ChannelListenerFactory
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
disconnected()
void
exceptionOccurred(Throwable t)
void
onConnection(SSLEngine engine)
void
receivedMessage(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
-
-