Uses of Class
org.rribbit.execution.AbstractListenerObjectExecutor.ExecutionResult
Packages that use AbstractListenerObjectExecutor.ExecutionResult
-
Uses of AbstractListenerObjectExecutor.ExecutionResult in org.rribbit.execution
Subclasses of AbstractListenerObjectExecutor.ExecutionResult in org.rribbit.executionModifier 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').Methods in org.rribbit.execution that return AbstractListenerObjectExecutor.ExecutionResultModifier and TypeMethodDescriptionAbstractListenerObjectExecutor.executeSingleListenerObject
(ListenerObject listenerObject, Object... parameters) This method executes a singleListenerObject
and returns the appropriateAbstractListenerObjectExecutor.ExecutionResult
.Methods in org.rribbit.execution that return types with arguments of type AbstractListenerObjectExecutor.ExecutionResultModifier 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)