Uses of Class
com.pervasive.datarush.cal.DistributedExecutionException
-
Packages that use DistributedExecutionException Package Description com.pervasive.datarush.cal Provides interfaces the define the "cluster abstraction layer". -
-
Uses of DistributedExecutionException in com.pervasive.datarush.cal
Subclasses of DistributedExecutionException in com.pervasive.datarush.cal Modifier and Type Class Description class
BatchExecutionException
Subclass of DistributedExecutionException that contains all the exceptions that occurred in one batch.Methods in com.pervasive.datarush.cal that throw DistributedExecutionException Modifier and Type Method Description <T> T
DistributedExecutorService. execute(DistributedCallable<T> command, ExecutionOptions options)
Synchronously invokes the given callable.<T> T
DistributedExecutorService. execute(DistributedCallableBatch<T> command, ExecutionOptions options)
Synchronously invokes the given callable.static <T> List<T>
ExecutionUtil. getResults(List<? extends Future<T>> futures)
InvokesFuture.get()
on each element in the provided list of futures, returning a list of results or throwing an exception if there are any failures.static <T> List<T>
ExecutionUtil. getResults(List<? extends Future<T>> futures, long timeout, TimeUnit timeunit)
InvokesFuture.get()
orFuture.get(long, TimeUnit)
on each element in the provided list of futures, returning a list of results or throwing an exception if there are any failures.static <S> List<S>
ExecutionUtil. getStatus(List<? extends MonitoredFuture<S>> futures)
InvokesMonitoredFuture.getStatus()
on each element in the provided list of futures, returning a list of results or throwing an exception if there are any failures.
-