Package org.jboss.remoting3
Interface OpenListener
-
public interface OpenListener
A listener for new channels. An open listener is registered with anEndpoint
via theEndpoint.registerService(String, OpenListener, OptionMap)
method.- Author:
- David M. Lloyd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
channelOpened(Channel channel)
Notification that a new channel has been opened for this service.void
registrationTerminated()
Called when this registration has been terminated.
-
-
-
Method Detail
-
channelOpened
void channelOpened(Channel channel)
Notification that a new channel has been opened for this service.- Parameters:
channel
- the channel that was opened
-
registrationTerminated
void registrationTerminated()
Called when this registration has been terminated.
-
-