Uses of Interface
org.apache.sshd.common.util.io.functors.Invoker
Packages that use Invoker
Package
Description
-
Uses of Invoker in org.apache.sshd.common.channel
Methods in org.apache.sshd.common.channel with parameters of type InvokerModifier and TypeMethodDescriptionprotected void
AbstractChannel.invokeChannelSignaller
(Invoker<ChannelListener, Void> invoker) -
Uses of Invoker in org.apache.sshd.common.forward
Methods in org.apache.sshd.common.forward with parameters of type InvokerModifier and TypeMethodDescriptionprotected void
DefaultForwarder.invokePortEventListenerSignaller
(Invoker<PortForwardingEventListener, Void> invoker) protected void
DefaultForwarder.invokePortEventListenerSignallerHolders
(Collection<? extends PortForwardingEventListenerManager> holders, Invoker<PortForwardingEventListener, Void> invoker) protected void
DefaultForwarder.invokePortEventListenerSignallerListeners
(Collection<? extends PortForwardingEventListener> listeners, Invoker<PortForwardingEventListener, Void> invoker) -
Uses of Invoker in org.apache.sshd.common.session.helpers
Methods in org.apache.sshd.common.session.helpers with parameters of type InvokerModifier and TypeMethodDescriptionprotected void
SessionHelper.invokeSessionSignaller
(Invoker<SessionListener, Void> invoker) -
Uses of Invoker in org.apache.sshd.common.util.io.functors
Methods in org.apache.sshd.common.util.io.functors that return InvokerModifier and TypeMethodDescriptionInvoker.wrapAll
(Collection<? extends Invoker<? super ARG, ?>> invokers) Wraps a bunch ofInvoker
-s that return no value into one that invokes them in the same order as they appear.Invoker.wrapFirst
(Collection<? extends Invoker<? super ARG, ?>> invokers) Wraps a bunch ofInvoker
-s that return no value into one that invokes them in the same order as they appear.Methods in org.apache.sshd.common.util.io.functors that return types with arguments of type InvokerModifier and TypeMethodDescriptionstatic <ARG> AbstractMap.SimpleImmutableEntry
<Invoker<? super ARG, ?>, Throwable> Invoker.invokeTillFirstFailure
(ARG arg, Collection<? extends Invoker<? super ARG, ?>> invokers) Invokes all instances until 1st failure (if any)Method parameters in org.apache.sshd.common.util.io.functors with type arguments of type InvokerModifier and TypeMethodDescriptionstatic <ARG> void
Invoker.invokeAll
(ARG arg, Collection<? extends Invoker<? super ARG, ?>> invokers) Invokes all the instances ignoring the return value.static <ARG> AbstractMap.SimpleImmutableEntry
<Invoker<? super ARG, ?>, Throwable> Invoker.invokeTillFirstFailure
(ARG arg, Collection<? extends Invoker<? super ARG, ?>> invokers) Invokes all instances until 1st failure (if any)Invoker.wrapAll
(Collection<? extends Invoker<? super ARG, ?>> invokers) Wraps a bunch ofInvoker
-s that return no value into one that invokes them in the same order as they appear.Invoker.wrapFirst
(Collection<? extends Invoker<? super ARG, ?>> invokers) Wraps a bunch ofInvoker
-s that return no value into one that invokes them in the same order as they appear.