Package hudson.slaves
Class ChannelPinger
- java.lang.Object
-
- hudson.slaves.ComputerListener
-
- hudson.slaves.ChannelPinger
-
- All Implemented Interfaces:
ExtensionPoint
@Extension public class ChannelPinger extends ComputerListener
Establish a periodic ping to keep connections betweenagents
and the main Jenkins node alive. This prevents network proxies from terminating connections that are idle for too long.- Since:
- 1.405
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ChannelPinger.SetUpRemotePing
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description ChannelPinger()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
install(hudson.remoting.Channel channel)
void
preOnline(Computer c, hudson.remoting.Channel channel, FilePath root, TaskListener listener)
Called before aComputer
is marked online.static void
setUpPingForChannel(hudson.remoting.Channel channel, SlaveComputer computer, int timeoutSeconds, int intervalSeconds, boolean analysis)
-
Methods inherited from class hudson.slaves.ComputerListener
all, onConfigurationChange, onLaunchFailure, onOffline, onOffline, onOnline, onOnline, onTemporarilyOffline, onTemporarilyOnline, preLaunch, register, unregister
-
-
-
-
Method Detail
-
preOnline
public void preOnline(Computer c, hudson.remoting.Channel channel, FilePath root, TaskListener listener)
Description copied from class:ComputerListener
Called before aComputer
is marked online.This enables you to do some work on all the agents as they get connected. Unlike
ComputerListener.onOnline(Computer, TaskListener)
, a failure to carry out this function normally will prevent a computer from marked as online.- Overrides:
preOnline
in classComputerListener
channel
- This is the channel object to talk to the agent. (This is the same object returned byComputer.getChannel()
once it's connected.root
- The directory where this agent stores files. The same asNode.getRootPath()
, except that method returns null until the agent is connected. So this parameter is passed explicitly instead.listener
- This is connected to the launch log of the computer. 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.- See Also:
ComputerListener.onOnline(Computer, TaskListener)
-
install
public void install(hudson.remoting.Channel channel)
-
setUpPingForChannel
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class) public static void setUpPingForChannel(hudson.remoting.Channel channel, SlaveComputer computer, int timeoutSeconds, int intervalSeconds, boolean analysis)
-
-