hudson.remoting
Interface EngineListener

All Known Implementing Classes:
GuiListener

public interface EngineListener

Receives status notification from Engine. The callback will be invoked on a non-GUI thread.

Author:
Kohsuke Kawaguchi

Method Summary
 void error(java.lang.Throwable t)
          Fatal error that's non recoverable.
 void onDisconnect()
          Called when a connection is terminated.
 void status(java.lang.String msg)
          Status message that indicates the progress of the operation.
 void status(java.lang.String msg, java.lang.Throwable t)
          Status message, with additoinal stack trace that indicates an error that was recovered.
 

Method Detail

status

void status(java.lang.String msg)
Status message that indicates the progress of the operation.


status

void status(java.lang.String msg,
            java.lang.Throwable t)
Status message, with additoinal stack trace that indicates an error that was recovered.


error

void error(java.lang.Throwable t)
Fatal error that's non recoverable.


onDisconnect

void onDisconnect()
Called when a connection is terminated.



Copyright © 2013. All Rights Reserved.