Package hudson.model
Class Computer.DisplayExecutor.InternalComputerListener
- java.lang.Object
-
- hudson.slaves.ComputerListener
-
- hudson.model.Computer.DisplayExecutor.InternalComputerListener
-
- All Implemented Interfaces:
ExtensionPoint
- Enclosing class:
- Computer.DisplayExecutor
@Extension(ordinal=1.7976931348623157E308) @Restricted(org.kohsuke.accmod.restrictions.DoNotUse.class) public static class Computer.DisplayExecutor.InternalComputerListener extends ComputerListener
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description InternalComputerListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onOnline(Computer c, TaskListener listener)
Called right after aComputer
comes online.-
Methods inherited from class hudson.slaves.ComputerListener
all, onConfigurationChange, onLaunchFailure, onOffline, onOffline, onOnline, onTemporarilyOffline, onTemporarilyOnline, preLaunch, preOnline, register, unregister
-
-
-
-
Method Detail
-
onOnline
public void onOnline(Computer c, TaskListener listener) throws IOException, InterruptedException
Description copied from class:ComputerListener
Called right after aComputer
comes online.This enables you to do some work on all the agents as they get connected. Any thrown
Exception
s will be recorded to the listener. NoException
will put the computer offline, however anyError
will put the computer offline since they indicate unrecoverable conditions.Starting Hudson 1.312, this method is also invoked for the master, not just for agents.
- Overrides:
onOnline
in classComputerListener
listener
- This is connected to the launch log of the computer or Jenkins master. Since this method is called synchronously from the thread that launches a computer, if this method performs a time-consuming operation, this listener should be notified of the progress. This is also a good listener for reporting problems.- Throws:
IOException
- Exceptions will be recorded to the listener. Note that throwing an exception doesn't put the computer offline.InterruptedException
- Exceptions will be recorded to the listener. Note that throwing an exception doesn't put the computer offline.- See Also:
ComputerListener.preOnline(Computer, Channel, FilePath, TaskListener)
-
-