Uses of Interface
org.apache.sshd.common.util.io.functors.Invoker
-
Packages that use Invoker Package Description org.apache.sshd.common.channel org.apache.sshd.common.forward org.apache.sshd.common.session.helpers org.apache.sshd.common.util.io.functors -
-
Uses of Invoker in org.apache.sshd.common.channel
Methods in org.apache.sshd.common.channel with parameters of type Invoker Modifier and Type Method Description protected 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 Invoker Modifier and Type Method Description protected 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 Invoker Modifier and Type Method Description protected 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 Invoker Modifier and Type Method Description static <ARG> Invoker<ARG,Void>
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.static <ARG> Invoker<ARG,Void>
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 Invoker Modifier and Type Method Description 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)Method parameters in org.apache.sshd.common.util.io.functors with type arguments of type Invoker Modifier and Type Method Description static <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)static <ARG> Invoker<ARG,Void>
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.static <ARG> Invoker<ARG,Void>
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.
-