Package hudson.remoting
Class EngineListenerAdapter
java.lang.Object
hudson.remoting.EngineListenerAdapter
- All Implemented Interfaces:
EngineListener
Adapter class for
EngineListener
to shield subtypes from future callback additions.- Since:
- 2.36
- Author:
- Kohsuke Kawaguchi
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Fatal error that's non recoverable.void
Called when a connection is terminated.void
Called when a re-connection is about to be attempted.void
Status message that indicates the progress of the operation.void
Status message, with additional stack trace that indicates an error that was recovered.
-
Constructor Details
-
EngineListenerAdapter
public EngineListenerAdapter()
-
-
Method Details
-
status
Description copied from interface:EngineListener
Status message that indicates the progress of the operation.- Specified by:
status
in interfaceEngineListener
-
status
Description copied from interface:EngineListener
Status message, with additional stack trace that indicates an error that was recovered.- Specified by:
status
in interfaceEngineListener
-
error
Description copied from interface:EngineListener
Fatal error that's non recoverable.- Specified by:
error
in interfaceEngineListener
-
onDisconnect
public void onDisconnect()Description copied from interface:EngineListener
Called when a connection is terminated.- Specified by:
onDisconnect
in interfaceEngineListener
-
onReconnect
public void onReconnect()Description copied from interface:EngineListener
Called when a re-connection is about to be attempted.- Specified by:
onReconnect
in interfaceEngineListener
-