| Package | Description |
|---|---|
| hudson.remoting |
Remoting infrastructure for Hudson.
|
| org.jenkinsci.remoting.nio |
| Modifier and Type | Field and Description |
|---|---|
Channel.Mode |
Launcher.mode |
| Modifier and Type | Method and Description |
|---|---|
Channel.Mode |
ChannelBuilder.getMode() |
static Channel.Mode |
Channel.Mode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Channel.Mode[] |
Channel.Mode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
Launcher.main(InputStream is,
OutputStream os,
Channel.Mode mode) |
static void |
Launcher.main(InputStream is,
OutputStream os,
Channel.Mode mode,
boolean performPing)
Deprecated.
Use
#main(InputStream, OutputStream, Mode, boolean, JarCache) |
static void |
Launcher.main(InputStream is,
OutputStream os,
Channel.Mode mode,
boolean performPing,
JarCache cache) |
protected CommandTransport |
ChannelBuilder.makeTransport(InputStream is,
OutputStream os,
Channel.Mode mode,
Capability cap)
Instantiate a transport.
|
ChannelBuilder |
ChannelBuilder.withMode(Channel.Mode mode)
The encoding to be used over the stream.
|
| Constructor and Description |
|---|
Channel(String name,
ExecutorService exec,
Channel.Mode mode,
InputStream is,
OutputStream os)
Deprecated.
as of 2.24
Use
ChannelBuilder
ChannelBuilder(name, exec)
.withMode(mode)
.build(is, os) |
Channel(String name,
ExecutorService exec,
Channel.Mode mode,
InputStream is,
OutputStream os,
OutputStream header)
Deprecated.
as of 2.24
Use
ChannelBuilder
ChannelBuilder(name, exec)
.withMode(mode)
.withHeaderStream(header)
.withArbitraryCallableAllowed(true)
.withRemoteClassLoadingAllowed(true)
.build(is, os) |
Channel(String name,
ExecutorService exec,
Channel.Mode mode,
InputStream is,
OutputStream os,
OutputStream header,
boolean restricted)
Deprecated.
as of 2.24
Use
ChannelBuilder
ChannelBuilder(name, exec)
.withMode(mode)
.withHeaderStream(header)
.withArbitraryCallableAllowed(!restricted)
.withRemoteClassLoadingAllowed(!restricted)
.withBaseLoader(base)
.build(is, os) |
Channel(String name,
ExecutorService exec,
Channel.Mode mode,
InputStream is,
OutputStream os,
OutputStream header,
boolean restricted,
ClassLoader base)
Deprecated.
as of 2.24
Use
ChannelBuilder
ChannelBuilder(name, exec)
.withMode(mode)
.withHeaderStream(header)
.withArbitraryCallableAllowed(!restricted)
.withRemoteClassLoadingAllowed(!restricted)
.withBaseLoader(base)
.build(is, os) |
| Modifier and Type | Method and Description |
|---|---|
NioChannelBuilder |
NioChannelBuilder.withMode(Channel.Mode mode) |
Copyright © 2004–2020. All rights reserved.