Package org.apache.sshd.client.channel
Interface ClientChannelHolder
-
- All Superinterfaces:
ChannelHolder
- All Known Subinterfaces:
SftpClient
,SubsystemClient
- All Known Implementing Classes:
AbstractSftpClient
,AbstractSubsystemClient
,ClientChannelPendingMessagesQueue
,DefaultSftpClient
,SftpFileSystem.Wrapper
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ClientChannelHolder extends ChannelHolder
TODO Add javadoc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Channel
getChannel()
ClientChannel
getClientChannel()
-
-
-
Method Detail
-
getChannel
default Channel getChannel()
- Specified by:
getChannel
in interfaceChannelHolder
- Returns:
- The associated
Channel
instance
-
getClientChannel
ClientChannel getClientChannel()
- Returns:
- The underlying
ClientChannel
used
-
-