Package org.firebirdsql.gds.ng.wire
Interface AsynchronousChannelListener
- 
- All Known Implementing Classes:
- AsynchronousChannelListenerDispatcher,- WireEventHandle
 
 public interface AsynchronousChannelListenerListener interface for events on the asynchronous channel.- Since:
- 3.0
- Author:
- Mark Rotteveel
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classAsynchronousChannelListener.EventEvent count notification
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidchannelClosing(FbWireAsynchronousChannel channel)Signals the closing of an asynchronous channel.voideventReceived(FbWireAsynchronousChannel channel, AsynchronousChannelListener.Event event)Signals that an event has been received.
 
- 
- 
- 
Method Detail- 
channelClosingvoid channelClosing(FbWireAsynchronousChannel channel) Signals the closing of an asynchronous channel.Fired before the channel is actually closed. - Parameters:
- channel- The channel that is being closed
 
 - 
eventReceivedvoid eventReceived(FbWireAsynchronousChannel channel, AsynchronousChannelListener.Event event) Signals that an event has been received.Implementations should take care to only perform short processing on the current thread. If longer or complicated processing is necessary, please offload it to another thread or executor. - Parameters:
- channel- The channel that received the event
- event- The event received
 
 
- 
 
-