hudson.plugins.helpers
インタフェース Ghostwriter.SlaveGhostwriter
- すべてのスーパーインタフェース:
- Ghostwriter, Serializable
- 既知の実装クラスの一覧:
- JavaNCSSGhostwriter
- 含まれているインタフェース:
- Ghostwriter
public static interface Ghostwriter.SlaveGhostwriter
- extends Ghostwriter
If a Ghostwriter implements this interface, the performFromSlave method will be executed on the slave.
メソッドの概要 |
boolean |
performFromSlave(BuildProxy build,
hudson.model.BuildListener listener)
Runs (on the slave) the step over the given build and reports the progress to the listener. |
performFromSlave
boolean performFromSlave(BuildProxy build,
hudson.model.BuildListener listener)
throws InterruptedException,
IOException
- Runs (on the slave) the step over the given build and reports the progress to the listener.
- パラメータ:
build
- The information about the build.listener
- The buildListener.
- 戻り値:
- true if the build can continue, false if there was an error
and the build needs to be aborted.
- 例外:
InterruptedException
- If the build is interrupted by the user (in an attempt to abort the build.)
Normally the BuildStep
implementations may simply forward
the exception it got from its lower-level functions.
IOException
- If the implementation wants to abort the processing when an IOException
happens, it can simply propagate the exception to the caller. This will cause
the build to fail, with the default error message.
Implementations are encouraged to catch IOException
on its own to
provide a better error message, if it can do so, so that users have better
understanding on why it failed.
Copyright © 2004-2011. All Rights Reserved.