Uses of Enum Class
hudson.remoting.Channel.Mode
Packages that use Channel.Mode
-
Uses of Channel.Mode in hudson.remoting
Fields in hudson.remoting declared as Channel.ModeMethods in hudson.remoting that return Channel.ModeModifier and TypeMethodDescriptionChannelBuilder.getMode()static Channel.ModeReturns the enum constant of this class with the specified name.static Channel.Mode[]Channel.Mode.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in hudson.remoting with parameters of type Channel.ModeModifier and TypeMethodDescriptionstatic voidLauncher.main(InputStream is, OutputStream os, Channel.Mode mode) static voidLauncher.main(InputStream is, OutputStream os, Channel.Mode mode, boolean performPing) Deprecated.static voidLauncher.main(InputStream is, OutputStream os, Channel.Mode mode, boolean performPing, JarCache cache) protected CommandTransportChannelBuilder.makeTransport(InputStream is, OutputStream os, Channel.Mode mode, Capability cap) Instantiate a transport.ChannelBuilder.withMode(Channel.Mode mode) The encoding to be used over the stream.Constructors in hudson.remoting with parameters of type Channel.ModeModifierConstructorDescriptionChannel(String name, ExecutorService exec, Channel.Mode mode, InputStream is, OutputStream os) Deprecated.as of 2.24 UseChannelBuilderChannelBuilder(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 UseChannelBuilderChannelBuilder(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 UseChannelBuilderChannelBuilder(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 UseChannelBuilderChannelBuilder(name, exec) .withMode(mode) .withHeaderStream(header) .withArbitraryCallableAllowed(!restricted) .withRemoteClassLoadingAllowed(!restricted) .withBaseLoader(base) .build(is, os) -
Uses of Channel.Mode in org.jenkinsci.remoting.nio
Methods in org.jenkinsci.remoting.nio with parameters of type Channel.Mode
Launcher.main(InputStream, OutputStream, Channel.Mode, boolean, JarCache)