Uses of Class
hudson.remoting.CommandTransport
Packages that use CommandTransport
-
Uses of CommandTransport in hudson.remoting
Subclasses of CommandTransport in hudson.remotingModifier and TypeClassDescriptionclass
CommandTransport
that works withbyte[]
instead of command object.class
class
SynchronousCommandTransport
that works withbyte[]
instead of command object.class
CommandTransport
that implements the read operation in a synchronous fashion.Methods in hudson.remoting that return CommandTransportModifier and TypeMethodDescriptionprotected CommandTransport
ChannelBuilder.makeTransport
(InputStream is, OutputStream os, Channel.Mode mode, Capability cap) Instantiate a transport.protected CommandTransport
ChannelBuilder.negotiate
(InputStream is, OutputStream os) Performs hand-shaking and creates aCommandTransport
.Methods in hudson.remoting with parameters of type CommandTransportConstructors in hudson.remoting with parameters of type CommandTransportModifierConstructorDescriptionprotected
Channel
(ChannelBuilder settings, CommandTransport transport) Channel
(String name, ExecutorService exec, CommandTransport transport, boolean restricted, ClassLoader base) Deprecated.Channel
(String name, ExecutorService exec, CommandTransport transport, boolean restricted, ClassLoader base, JarCache jarCache) Deprecated.as of 2.38 UseChannelBuilder
ChannelBuilder(name, exec) .withArbitraryCallableAllowed(!restricted) .withRemoteClassLoadingAllowed(!restricted) .withBaseLoader(base) .withJarCache(jarCache) .build(transport)
ChannelBuilder
ChannelBuilder(name, exec) .withArbitraryCallableAllowed(!restricted) .withRemoteClassLoadingAllowed(!restricted) .withBaseLoader(base) .build(transport)