-
Notifications
You must be signed in to change notification settings - Fork 13
UniversalInvocable
codefriar edited this page Oct 5, 2023
·
2 revisions
STATUS: ACTIVE
This class exposes methods from any class that extends Invocable to flows. By adding 'extends Invocable' to your class and adding the call method, any class' methods can be invoked by this single invocable method.
INVOCABLEMETHOD
This method is what will be displayed in the flow builder. This method can correctly handle bulk invocations, even across multiple classes and methods, returning all outputs in the same order as the inputs.
Param | Description |
---|---|
inputs |
List input objects. The first object in the list will be used. |
Type | Description |
---|---|
List | List output objects. Every input receives one output, even if non-fatal exceptions are encountered. |