Package com.uc4.communication
Interface IKickEventListener
public interface IKickEventListener
Listener can implement this interface to be notified on kicks.
This interface is a replacement for the deprecated kicks in INotificationListener
. This leads to a more stable implementation,
because for new kicks no new method has been implemented.
Listeners are called from a background thread which expects to get control back quickly. If a listener is going to perform a potentially time-consuming operation like processing a large document or doing something that may block, such as performing socket IO, it should arrange to do that work in another thread so it can return to its caller quickly.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
This method is called, when a kick event is performed.
-
Method Details
-
kickPerformed
This method is called, when a kick event is performed.- Parameters:
e
- performed KickEvent
-