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 classThisAbstractListenerObjectExecutor.ExecutionResultrepresents a successful invocation, along with its result.protected static classThisAbstractListenerObjectExecutor.ExecutionResultrepresents an unsuccessful invocation, where the method threw aThrowable.protected static classThisAbstractListenerObjectExecutor.ExecutionResultrepresents 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 singleListenerObjectand 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)