Package net.officefloor.frame.util
Interface InvokedProcessServicer
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface InvokedProcessServicer
Services an invokedProcessState
from theManagedObjectSourceStandAlone
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
service(int processIndex, java.lang.Object parameter, ManagedObject managedObject)
Services the invokedProcessState
.
-
-
-
Method Detail
-
service
void service(int processIndex, java.lang.Object parameter, ManagedObject managedObject) throws java.lang.Throwable
Services the invokedProcessState
.- Parameters:
processIndex
- Index of the invokedProcessState
. Allows re-using theInvokedProcessServicer
for multiple invocations.parameter
- Parameter to the initialManagedFunction
within theProcessState
.managedObject
-ManagedObject
provided for the invokedProcessState
.- Throws:
java.lang.Throwable
- If failure on servicing.
-
-