Interface ContinuousListener
public interface ContinuousListener
An interface for listener to generic changes from a remote source.
-
Method Summary
Modifier and TypeMethodDescriptionvoidIf the connection has gone down, this will be triggered as soon as we know it has gone down.voidIf the connection comes back up after having gone down, this will be triggered as it comes back up.voidIf the connection could not be formed initially, this will be triggered.
-
Method Details
-
connectionLost
void connectionLost()If the connection has gone down, this will be triggered as soon as we know it has gone down. -
initiationFailed
void initiationFailed()If the connection could not be formed initially, this will be triggered. -
connectionReestablished
void connectionReestablished()If the connection comes back up after having gone down, this will be triggered as it comes back up.
-