Uses of Interface
org.apache.sshd.common.util.threads.CloseableExecutorService
-
-
Uses of CloseableExecutorService in org.apache.sshd.agent.common
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.common.channel
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(String discriminator, boolean client, Collection<? extends RequestHandler<Channel>> handlers, CloseableExecutorService executorService)
-
Uses of CloseableExecutorService in org.apache.sshd.common.io
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
Constructors in org.apache.sshd.common.io.nio2 with parameters of type CloseableExecutorService Constructor Description Nio2ServiceFactory(FactoryManager factoryManager, CloseableExecutorService service)
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 types with arguments of type CloseableExecutorService Modifier and Type Method Description 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, String poolName)
static CloseableExecutorService
ThreadUtils. newFixedThreadPoolIf(CloseableExecutorService executorService, 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(Supplier<? extends CloseableExecutorService> provider)
-
Uses of CloseableExecutorService in org.apache.sshd.scp.server
Methods in org.apache.sshd.scp.server that return CloseableExecutorService Modifier and Type Method Description protected CloseableExecutorService
ScpCommandFactory. resolveExecutorService(String command)
Methods in org.apache.sshd.scp.server that return types with arguments of type CloseableExecutorService Modifier and Type Method Description 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(Supplier<? extends CloseableExecutorService> provider)
ScpCommandFactory.Builder
ScpCommandFactory.Builder. withExecutorServiceProvider(Supplier<? extends CloseableExecutorService> provider)
Constructors in org.apache.sshd.scp.server with parameters of type CloseableExecutorService Constructor Description ScpCommand(ChannelSession channelSession, 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(String discriminator, 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(String command, CloseableExecutorService executorService)
AbstractFileSystemCommand(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
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 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(Supplier<? extends CloseableExecutorService> provider)
SftpSubsystemFactory.Builder
SftpSubsystemFactory.Builder. withExecutorServiceProvider(Supplier<? extends CloseableExecutorService> provider)
-