Uses of Interface
org.apache.sshd.common.channel.throttle.ChannelStreamWriter
-
Packages that use ChannelStreamWriter Package Description org.apache.sshd.common.channel org.apache.sshd.common.channel.throttle org.apache.sshd.contrib.common.channel.throttle -
-
Uses of ChannelStreamWriter in org.apache.sshd.common.channel
Fields in org.apache.sshd.common.channel declared as ChannelStreamWriter Modifier and Type Field Description private ChannelStreamWriterChannelAsyncOutputStream. packetWriterprivate ChannelStreamWriterChannelOutputStream. packetWriter -
Uses of ChannelStreamWriter in org.apache.sshd.common.channel.throttle
Classes in org.apache.sshd.common.channel.throttle that implement ChannelStreamWriter Modifier and Type Class Description classDefaultChannelStreamWriterA ChannelStreamWriter that simply calls theChannel.writePacket(Buffer)method.Methods in org.apache.sshd.common.channel.throttle that return ChannelStreamWriter Modifier and Type Method Description ChannelStreamWriterChannelStreamWriterResolver. resolveChannelStreamWriter(Channel channel, byte cmd)default ChannelStreamWriterChannelStreamWriterResolverManager. resolveChannelStreamWriter(Channel channel, byte cmd) -
Uses of ChannelStreamWriter in org.apache.sshd.contrib.common.channel.throttle
Classes in org.apache.sshd.contrib.common.channel.throttle that implement ChannelStreamWriter Modifier and Type Class Description classThrottlingChannelStreamWriterAChannelStreamWriterdelegate implementation that "throttles" the output by having a limit on the outstanding packets that have not been sent yet.Fields in org.apache.sshd.contrib.common.channel.throttle declared as ChannelStreamWriter Modifier and Type Field Description private ChannelStreamWriterThrottlingChannelStreamWriter. delegateMethods in org.apache.sshd.contrib.common.channel.throttle that return ChannelStreamWriter Modifier and Type Method Description ChannelStreamWriterThrottlingChannelStreamWriter. getDelegate()Constructors in org.apache.sshd.contrib.common.channel.throttle with parameters of type ChannelStreamWriter Constructor Description ThrottlingChannelStreamWriter(ChannelStreamWriter delegate, int maxPendingPackets, long maxWait)ThrottlingChannelStreamWriter(ChannelStreamWriter delegate, int maxPendingPackets, java.time.Duration maxWait)ThrottlingChannelStreamWriter(ChannelStreamWriter delegate, int maxPendingPackets, java.util.concurrent.TimeUnit waitUnit, long waitCount)ThrottlingChannelStreamWriter(ChannelStreamWriter delegate, PropertyResolver resolver)
-