Uses of Interface
org.apache.sshd.common.future.SshFuture
-
-
Uses of SshFuture in org.apache.sshd.client.future
Subinterfaces of SshFuture in org.apache.sshd.client.future Modifier and Type Interface Description interface
AuthFuture
AnSshFuture
for asynchronous authentication requests.interface
ConnectFuture
AnSshFuture
for asynchronous connections requests.interface
OpenFuture
AnSshFuture
for asynchronous channel opening requests.Classes in org.apache.sshd.client.future that implement SshFuture Modifier and Type Class Description class
DefaultAuthFuture
A default implementation ofAuthFuture
.class
DefaultConnectFuture
A default implementation ofConnectFuture
.class
DefaultOpenFuture
A default implementation ofOpenFuture
. -
Uses of SshFuture in org.apache.sshd.common.channel
Classes in org.apache.sshd.common.channel that implement SshFuture Modifier and Type Class Description static class
ChannelAsyncInputStream.IoReadFutureImpl
protected static class
ChannelAsyncOutputStream.BufferedFuture
Marker type to avoid repeated buffering inChannelAsyncOutputStream.writePacket(IoWriteFutureImpl, boolean)
.class
IoWriteFutureImpl
protected static class
SimpleIoOutputStream.DefaultIoWriteFuture
-
Uses of SshFuture in org.apache.sshd.common.future
Classes in org.apache.sshd.common.future with type parameters of type SshFuture Modifier and Type Class Description class
AbstractSshFuture<T extends SshFuture>
class
DefaultSshFuture<T extends SshFuture>
A default implementation ofSshFuture
.class
DefaultVerifiableSshFuture<T extends SshFuture>
interface
SshFuture<T extends SshFuture>
Represents the completion of an asynchronous SSH operation on a given object (it may be an SSH session or an SSH channel).interface
SshFutureListener<T extends SshFuture>
Something interested in being notified when the completion of an asynchronous SSH operation :SshFuture
.Subinterfaces of SshFuture in org.apache.sshd.common.future Modifier and Type Interface Description interface
CloseFuture
AnSshFuture
for asynchronous close requests.interface
KeyExchangeFuture
Classes in org.apache.sshd.common.future that implement SshFuture Modifier and Type Class Description class
AbstractSshFuture<T extends SshFuture>
class
DefaultCloseFuture
A default implementation ofCloseFuture
.class
DefaultKeyExchangeFuture
class
DefaultSshFuture<T extends SshFuture>
A default implementation ofSshFuture
.class
DefaultVerifiableSshFuture<T extends SshFuture>
class
GlobalRequestFuture
ADefaultSshFuture
that can be used to wait for the reply of an SSH_MSG_GLOBAL_REQUEST sent withwant-reply = true
. -
Uses of SshFuture in org.apache.sshd.common.io
Subinterfaces of SshFuture in org.apache.sshd.common.io Modifier and Type Interface Description interface
IoConnectFuture
interface
IoReadFuture
interface
IoWriteFuture
Classes in org.apache.sshd.common.io that implement SshFuture Modifier and Type Class Description class
AbstractIoWriteFuture
-
Uses of SshFuture in org.apache.sshd.common.io.nio2
Classes in org.apache.sshd.common.io.nio2 that implement SshFuture Modifier and Type Class Description static class
Nio2Connector.DefaultIoConnectFuture
class
Nio2DefaultIoWriteFuture
-
Uses of SshFuture in org.apache.sshd.common.session.helpers
Classes in org.apache.sshd.common.session.helpers that implement SshFuture Modifier and Type Class Description class
PendingWriteFuture
Future holding a packet pending key exchange termination. -
Uses of SshFuture in org.apache.sshd.common.util.closeable
Classes in org.apache.sshd.common.util.closeable with type parameters of type SshFuture Modifier and Type Class Description class
FuturesCloseable<T extends SshFuture>
Fields in org.apache.sshd.common.util.closeable with type parameters of type SshFuture Modifier and Type Field Description private java.lang.Iterable<? extends SshFuture<T>>
FuturesCloseable. futures
Methods in org.apache.sshd.common.util.closeable with type parameters of type SshFuture Modifier and Type Method Description <T extends SshFuture>
BuilderBuilder. when(java.lang.Object id, java.lang.Iterable<? extends SshFuture<T>> futures)
<T extends SshFuture>
BuilderBuilder. when(SshFuture<T> future)
<T extends SshFuture>
BuilderBuilder. when(SshFuture<T>... futures)
Methods in org.apache.sshd.common.util.closeable with parameters of type SshFuture Modifier and Type Method Description <T extends SshFuture>
BuilderBuilder. when(SshFuture<T> future)
<T extends SshFuture>
BuilderBuilder. when(SshFuture<T>... futures)
Method parameters in org.apache.sshd.common.util.closeable with type arguments of type SshFuture Modifier and Type Method Description <T extends SshFuture>
BuilderBuilder. when(java.lang.Object id, java.lang.Iterable<? extends SshFuture<T>> futures)
Constructor parameters in org.apache.sshd.common.util.closeable with type arguments of type SshFuture Constructor Description FuturesCloseable(java.lang.Object id, java.lang.Object lock, java.lang.Iterable<? extends SshFuture<T>> futures)
-