Uses of Interface
org.apache.sshd.common.util.threads.CloseableExecutorService
-
-
Uses of CloseableExecutorService in org.apache.sshd.agent.common
Fields in org.apache.sshd.agent.common declared as CloseableExecutorService Modifier and Type Field Description private CloseableExecutorService
AbstractAgentProxy. executor
Methods in org.apache.sshd.agent.common that return CloseableExecutorService Modifier and Type Method Description CloseableExecutorService
AbstractAgentProxy. getExecutorService()
Constructors in org.apache.sshd.agent.common with parameters of type CloseableExecutorService Constructor Description AbstractAgentProxy(CloseableExecutorService executorService)
-
Uses of CloseableExecutorService in org.apache.sshd.agent.local
Constructors in org.apache.sshd.agent.local with parameters of type CloseableExecutorService Constructor Description ChannelAgentForwarding(CloseableExecutorService executor)
-
Uses of CloseableExecutorService in org.apache.sshd.agent.unix
Fields in org.apache.sshd.agent.unix declared as CloseableExecutorService Modifier and Type Field Description private CloseableExecutorService
ChannelAgentForwarding. forwardService
private CloseableExecutorService
AgentServerProxy. pipeService
private CloseableExecutorService
AgentServer. service
Fields in org.apache.sshd.agent.unix with type parameters of type CloseableExecutorService Modifier and Type Field Description private Factory<CloseableExecutorService>
ChannelAgentForwardingFactory. executorServiceFactory
private Factory<CloseableExecutorService>
UnixAgentFactory. executorServiceFactory
Methods in org.apache.sshd.agent.unix that return CloseableExecutorService Modifier and Type Method Description CloseableExecutorService
AgentServer. getExecutorService()
CloseableExecutorService
AgentServerProxy. getExecutorService()
protected CloseableExecutorService
UnixAgentFactory. newExecutor()
Constructors in org.apache.sshd.agent.unix with parameters of type CloseableExecutorService Constructor Description AgentClient(FactoryManager manager, java.lang.String authSocket, CloseableExecutorService executor)
AgentServer(SshAgent agent, CloseableExecutorService executor)
AgentServer(CloseableExecutorService executor)
AgentServerProxy(ConnectionService service, CloseableExecutorService executor)
ChannelAgentForwarding(CloseableExecutorService executor)
Constructor parameters in org.apache.sshd.agent.unix with type arguments of type CloseableExecutorService Constructor Description ChannelAgentForwardingFactory(java.lang.String name, Factory<CloseableExecutorService> executorServiceFactory)
UnixAgentFactory(Factory<CloseableExecutorService> factory)
-
Uses of CloseableExecutorService in org.apache.sshd.client.channel
Fields in org.apache.sshd.client.channel declared as CloseableExecutorService Modifier and Type Field Description protected CloseableExecutorService
ChannelSession. pumperService
-
Uses of CloseableExecutorService in org.apache.sshd.common.channel
Fields in org.apache.sshd.common.channel declared as CloseableExecutorService Modifier and Type Field Description private CloseableExecutorService
AbstractChannel. executor
Methods in org.apache.sshd.common.channel that return CloseableExecutorService Modifier and Type Method Description CloseableExecutorService
AbstractChannel. getExecutorService()
Constructors in org.apache.sshd.common.channel with parameters of type CloseableExecutorService Constructor Description AbstractChannel(java.lang.String discriminator, boolean client, java.util.Collection<? extends RequestHandler<Channel>> handlers, CloseableExecutorService executorService)
-
Uses of CloseableExecutorService in org.apache.sshd.common.io
Fields in org.apache.sshd.common.io declared as CloseableExecutorService Modifier and Type Field Description private CloseableExecutorService
AbstractIoServiceFactory. executor
Fields in org.apache.sshd.common.io with type parameters of type CloseableExecutorService Modifier and Type Field Description private Factory<CloseableExecutorService>
AbstractIoServiceFactoryFactory. executorServiceFactory
Methods in org.apache.sshd.common.io that return CloseableExecutorService Modifier and Type Method Description CloseableExecutorService
AbstractIoServiceFactory. getExecutorService()
protected CloseableExecutorService
AbstractIoServiceFactoryFactory. newExecutor()
Methods in org.apache.sshd.common.io that return types with arguments of type CloseableExecutorService Modifier and Type Method Description Factory<CloseableExecutorService>
AbstractIoServiceFactoryFactory. getExecutorServiceFactory()
Method parameters in org.apache.sshd.common.io with type arguments of type CloseableExecutorService Modifier and Type Method Description void
AbstractIoServiceFactoryFactory. setExecutorServiceFactory(Factory<CloseableExecutorService> factory)
void
IoServiceFactoryFactory. setExecutorServiceFactory(Factory<CloseableExecutorService> factory)
Constructors in org.apache.sshd.common.io with parameters of type CloseableExecutorService Constructor Description AbstractIoServiceFactory(FactoryManager factoryManager, CloseableExecutorService executorService)
Constructor parameters in org.apache.sshd.common.io with type arguments of type CloseableExecutorService Constructor Description AbstractIoServiceFactoryFactory(Factory<CloseableExecutorService> factory)
DefaultIoServiceFactoryFactory(Factory<CloseableExecutorService> factory)
-
Uses of CloseableExecutorService in org.apache.sshd.common.io.nio2
Fields in org.apache.sshd.common.io.nio2 declared as CloseableExecutorService Modifier and Type Field Description private CloseableExecutorService
Nio2ServiceFactory. resuming
Constructors in org.apache.sshd.common.io.nio2 with parameters of type CloseableExecutorService Constructor Description Nio2ServiceFactory(FactoryManager factoryManager, CloseableExecutorService service, CloseableExecutorService resumeTasks)
Constructor parameters in org.apache.sshd.common.io.nio2 with type arguments of type CloseableExecutorService Constructor Description Nio2ServiceFactoryFactory(Factory<CloseableExecutorService> executors)
-
Uses of CloseableExecutorService in org.apache.sshd.common.util.threads
Classes in org.apache.sshd.common.util.threads that implement CloseableExecutorService Modifier and Type Class Description class
NoCloseExecutor
Wraps anExecutorService
as aCloseableExecutorService
and avoids calling itsshutdown
methods when the wrapper is shut downclass
SshThreadPoolExecutor
Methods in org.apache.sshd.common.util.threads that return CloseableExecutorService Modifier and Type Method Description CloseableExecutorService
ExecutorServiceCarrier. getExecutorService()
static CloseableExecutorService
ThreadUtils. newCachedThreadPool(java.lang.String poolName)
static CloseableExecutorService
ThreadUtils. newCachedThreadPoolIf(CloseableExecutorService executorService, java.lang.String poolName)
static CloseableExecutorService
ThreadUtils. newFixedThreadPool(java.lang.String poolName, int nThreads)
static CloseableExecutorService
ThreadUtils. newFixedThreadPoolIf(CloseableExecutorService executorService, java.lang.String poolName, int nThreads)
static CloseableExecutorService
ThreadUtils. newSingleThreadExecutor(java.lang.String poolName)
static CloseableExecutorService
ThreadUtils. noClose(CloseableExecutorService executorService)
static CloseableExecutorService
ThreadUtils. protectExecutorServiceShutdown(CloseableExecutorService executorService, boolean shutdownOnExit)
Wraps anCloseableExecutorService
in such a way as to "protect" it for calls to theExecutorService.shutdown()
orExecutorService.shutdownNow()
.default CloseableExecutorService
ExecutorServiceProvider. resolveExecutorService()
Methods in org.apache.sshd.common.util.threads that return types with arguments of type CloseableExecutorService Modifier and Type Method Description java.util.function.Supplier<? extends CloseableExecutorService>
ExecutorServiceProvider. getExecutorServiceProvider()
Methods in org.apache.sshd.common.util.threads with parameters of type CloseableExecutorService Modifier and Type Method Description static CloseableExecutorService
ThreadUtils. newCachedThreadPoolIf(CloseableExecutorService executorService, java.lang.String poolName)
static CloseableExecutorService
ThreadUtils. newFixedThreadPoolIf(CloseableExecutorService executorService, java.lang.String poolName, int nThreads)
static CloseableExecutorService
ThreadUtils. noClose(CloseableExecutorService executorService)
static CloseableExecutorService
ThreadUtils. protectExecutorServiceShutdown(CloseableExecutorService executorService, boolean shutdownOnExit)
Wraps anCloseableExecutorService
in such a way as to "protect" it for calls to theExecutorService.shutdown()
orExecutorService.shutdownNow()
.Method parameters in org.apache.sshd.common.util.threads with type arguments of type CloseableExecutorService Modifier and Type Method Description void
ManagedExecutorServiceSupplier. setExecutorServiceProvider(java.util.function.Supplier<? extends CloseableExecutorService> provider)
-
Uses of CloseableExecutorService in org.apache.sshd.scp.server
Fields in org.apache.sshd.scp.server with type parameters of type CloseableExecutorService Modifier and Type Field Description private java.util.function.Supplier<? extends CloseableExecutorService>
ScpCommandFactory. executorsProvider
Methods in org.apache.sshd.scp.server that return CloseableExecutorService Modifier and Type Method Description protected CloseableExecutorService
ScpCommandFactory. resolveExecutorService(java.lang.String command)
Methods in org.apache.sshd.scp.server that return types with arguments of type CloseableExecutorService Modifier and Type Method Description java.util.function.Supplier<? extends CloseableExecutorService>
ScpCommandFactory. getExecutorServiceProvider()
Method parameters in org.apache.sshd.scp.server with type arguments of type CloseableExecutorService Modifier and Type Method Description void
ScpCommandFactory. setExecutorServiceProvider(java.util.function.Supplier<? extends CloseableExecutorService> provider)
ScpCommandFactory.Builder
ScpCommandFactory.Builder. withExecutorServiceProvider(java.util.function.Supplier<? extends CloseableExecutorService> provider)
Constructors in org.apache.sshd.scp.server with parameters of type CloseableExecutorService Constructor Description ScpCommand(ChannelSession channelSession, java.lang.String command, CloseableExecutorService executorService, int sendSize, int receiveSize, ScpFileOpener fileOpener, ScpTransferEventListener eventListener)
ScpShell(ChannelSession channelSession, CloseableExecutorService executorService, int sendSize, int receiveSize, ScpFileOpener fileOpener, ScpTransferEventListener eventListener)
-
Uses of CloseableExecutorService in org.apache.sshd.server.channel
Constructors in org.apache.sshd.server.channel with parameters of type CloseableExecutorService Constructor Description AbstractServerChannel(java.lang.String discriminator, java.util.Collection<? extends RequestHandler<Channel>> handlers, CloseableExecutorService executor)
AbstractServerChannel(CloseableExecutorService executor)
-
Uses of CloseableExecutorService in org.apache.sshd.server.command
Fields in org.apache.sshd.server.command declared as CloseableExecutorService Modifier and Type Field Description protected CloseableExecutorService
AbstractCommandSupport. executorService
Methods in org.apache.sshd.server.command that return CloseableExecutorService Modifier and Type Method Description CloseableExecutorService
AbstractCommandSupport. getExecutorService()
Constructors in org.apache.sshd.server.command with parameters of type CloseableExecutorService Constructor Description AbstractCommandSupport(java.lang.String command, CloseableExecutorService executorService)
AbstractFileSystemCommand(java.lang.String command, CloseableExecutorService executorService)
-
Uses of CloseableExecutorService in org.apache.sshd.server.forward
Methods in org.apache.sshd.server.forward that return CloseableExecutorService Modifier and Type Method Description CloseableExecutorService
TcpipServerChannel.TcpipFactory. getExecutorService()
Constructors in org.apache.sshd.server.forward with parameters of type CloseableExecutorService Constructor Description TcpipServerChannel(TcpForwardingFilter.Type type, CloseableExecutorService executor)
-
Uses of CloseableExecutorService in org.apache.sshd.sftp.server
Fields in org.apache.sshd.sftp.server declared as CloseableExecutorService Modifier and Type Field Description protected CloseableExecutorService
SftpSubsystem. executorService
Fields in org.apache.sshd.sftp.server with type parameters of type CloseableExecutorService Modifier and Type Field Description private java.util.function.Supplier<? extends CloseableExecutorService>
SftpSubsystemFactory.Builder. executorsProvider
private java.util.function.Supplier<? extends CloseableExecutorService>
SftpSubsystemFactory. executorsProvider
Methods in org.apache.sshd.sftp.server that return CloseableExecutorService Modifier and Type Method Description CloseableExecutorService
SftpSubsystem. getExecutorService()
CloseableExecutorService
SftpSubsystemFactory. getExecutorService()
Methods in org.apache.sshd.sftp.server that return types with arguments of type CloseableExecutorService Modifier and Type Method Description java.util.function.Supplier<? extends CloseableExecutorService>
SftpSubsystemFactory. getExecutorServiceProvider()
Method parameters in org.apache.sshd.sftp.server with type arguments of type CloseableExecutorService Modifier and Type Method Description void
SftpSubsystemFactory. setExecutorServiceProvider(java.util.function.Supplier<? extends CloseableExecutorService> provider)
SftpSubsystemFactory.Builder
SftpSubsystemFactory.Builder. withExecutorServiceProvider(java.util.function.Supplier<? extends CloseableExecutorService> provider)
-