Uses of Class
org.rribbit.execution.AbstractListenerObjectExecutor.ExecutionResult
-
Uses of AbstractListenerObjectExecutor.ExecutionResult in org.rribbit.execution
Modifier and TypeClassDescriptionprotected static class
ThisAbstractListenerObjectExecutor.ExecutionResult
represents a successful invocation, along with its result.protected static class
ThisAbstractListenerObjectExecutor.ExecutionResult
represents an unsuccessful invocation, where the method threw aThrowable
.protected static class
ThisAbstractListenerObjectExecutor.ExecutionResult
represents a successful invocation, but no result (method return type was 'void').Modifier and TypeMethodDescriptionAbstractListenerObjectExecutor.executeSingleListenerObject
(ListenerObject listenerObject, Object... parameters) This method executes a singleListenerObject
and returns the appropriateAbstractListenerObjectExecutor.ExecutionResult
.Modifier and TypeMethodDescriptionprotected abstract Collection
<AbstractListenerObjectExecutor.ExecutionResult> AbstractListenerObjectExecutor.doExecuteListeners
(Collection<ListenerObject> listenerObjects, Object... parameters) This method should callAbstractListenerObjectExecutor.executeSingleListenerObject(ListenerObject, Object...)
on eachListenerObject
, accumulate the results, and return.MultiThreadedListenerObjectExecutor.doExecuteListeners
(Collection<ListenerObject> listenerObjects, Object... parameters) SequentialListenerObjectExecutor.doExecuteListeners
(Collection<ListenerObject> listenerObjects, Object... parameters)