Interface IFunctionContext

All Superinterfaces:
IPortalContext, Serializable
All Known Implementing Classes:
FlowFunctionContext

public interface IFunctionContext extends IPortalContext
Since:
10.3
Author:
T. van Der Griend
  • Method Details

    • getFlowReference

      FlowReference getFlowReference()
      This method returns the type name of the function. The type name is used to uniquely identify the function. Multiple definitions of the same function may exist, sharing the same type, but with different call names.
      Returns:
      The type name of the function, never null.
    • getInput

      FunctionParameters getInput()
      This method returns the input parameters.
      Returns:
      The input parameters, never null.
    • setOutput

      void setOutput(FunctionParameters output)
      This method handles the computed output of function call.
      Parameters:
      output - Computed output of the function call.