Uses of Class
hudson.remoting.JarCache
Packages that use JarCache
-
Uses of JarCache in hudson.remoting
Subclasses of JarCache in hudson.remotingModifier and TypeClassDescriptionclass
JarCache
that stores files in a single directory.class
Default partial implementation ofJarCache
.Methods in hudson.remoting that return JarCacheModifier and TypeMethodDescriptionChannel.getJarCache()
If this channel is built with jar file caching, return the object that manages this cache.ChannelBuilder.getJarCache()
Gets the JAR Cache storage.Methods in hudson.remoting with parameters of type JarCacheModifier and TypeMethodDescriptionstatic void
Launcher.main
(InputStream is, OutputStream os, Channel.Mode mode, boolean performPing, JarCache cache) void
Channel.setJarCache
(JarCache jarCache) You can change theJarCache
while the channel is in operation, but doing so doesn't impactRemoteClassLoader
s that are already created.void
Engine.setJarCache
(JarCache jarCache) Configures custom JAR Cache location.ChannelBuilder.withJarCache
(JarCache jarCache) Sets the JAR cache storage.ChannelBuilder.withJarCacheOrDefault
(JarCache jarCache) Sets the JAR cache storage.Constructors in hudson.remoting with parameters of type JarCacheModifierConstructorDescriptionChannel
(String name, ExecutorService exec, CommandTransport transport, boolean restricted, ClassLoader base, JarCache jarCache) Deprecated. -
Uses of JarCache in org.jenkinsci.remoting.nio
Methods in org.jenkinsci.remoting.nio with parameters of type JarCache
ChannelBuilder
ChannelBuilder(name, exec) .withArbitraryCallableAllowed(!restricted) .withRemoteClassLoadingAllowed(!restricted) .withBaseLoader(base) .withJarCache(jarCache) .build(transport)