Uses of Interface
org.apache.sshd.common.util.io.functors.Invoker
-
Packages that use Invoker Package Description org.apache.sshd.common.util.io.functors -
-
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> voidInvoker. 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.
-