Uses of Interface
com.tangosol.util.function.Remote.Callable
-
Packages that use Remote.Callable Package Description com.oracle.coherence.concurrent.executor Classes to allow submission of tasks to the grid for execution.com.tangosol.util.function Contains Functional interfaces allowing remote execution of lambda expressions and method references. -
-
Uses of Remote.Callable in com.oracle.coherence.concurrent.executor
Methods in com.oracle.coherence.concurrent.executor with parameters of type Remote.Callable Modifier and Type Method Description <V> ScheduledFuture<V>
RemoteExecutor. schedule(Remote.Callable<V> callable, long lcDelay, TimeUnit unit)
Submits a value-returning one-shot task that becomes enabled after the given delay.<T> Future<T>
RemoteExecutor. submit(Remote.Callable<T> task)
Submits a value-returning task for execution and returns a Future representing the pending results of the task.Method parameters in com.oracle.coherence.concurrent.executor with type arguments of type Remote.Callable Modifier and Type Method Description <T> List<Future<T>>
RemoteExecutor. invokeAll(Collection<? extends Remote.Callable<T>> tasks)
Executes the given tasks, returning a list of Futures holding their status and results when all complete.<T> List<Future<T>>
RemoteExecutor. invokeAll(Collection<? extends Remote.Callable<T>> tasks, long lcTimeout, TimeUnit unit)
Executes the given tasks, returning a list of Futures holding their status and results when all complete or the timeout expires, whichever happens first.<T> T
RemoteExecutor. invokeAny(Collection<? extends Remote.Callable<T>> tasks)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do.<T> T
RemoteExecutor. invokeAny(Collection<? extends Remote.Callable<T>> tasks, long lcTimeout, TimeUnit unit)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses. -
Uses of Remote.Callable in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.Callable Modifier and Type Method Description static <V> Remote.Callable<V>
Remote. callable(Remote.Callable<V> callable)
Capture serializable Callable.Methods in com.tangosol.util.function with parameters of type Remote.Callable Modifier and Type Method Description static <V> Remote.Callable<V>
Remote. callable(Remote.Callable<V> callable)
Capture serializable Callable.
-