Class AbstractPolyglotProcedureTest.FlowHandlers

java.lang.Object
net.officefloor.polyglot.test.AbstractPolyglotProcedureTest.FlowHandlers
Enclosing class:
AbstractPolyglotProcedureTest

public static class AbstractPolyglotProcedureTest.FlowHandlers extends Object
Handles various flow outputs from the procedure.
  • Constructor Details

    • FlowHandlers

      public FlowHandlers()
  • Method Details

    • nextFunction

      public void nextFunction(Out<String> result)
      Handles the next function flow.
      Parameters:
      result - Output for the result.
    • flow

      public void flow(Out<String> result)
      Handles the flow output.
      Parameters:
      result - Output for the result.
    • flowWithCallback

      public void flowWithCallback(Out<String> result)
      Handles the flow with callback output.
      Parameters:
      result - Output for the result.
    • flowWithParameterAndCallback

      public void flowWithParameterAndCallback(@Parameter String param, Var<String> result)
      Handles the flow with parameter and callback output.
      Parameters:
      param - Flow parameter.
      result - Output for the result.
    • flowWithParameter

      public void flowWithParameter(@Parameter String param, Var<String> result)
      Handles the flow with parameter output.
      Parameters:
      param - Flow parameter.
      result - Output for the result.
    • exception

      public void exception(Out<String> result)
      Handles the exception flow.
      Parameters:
      result - Output for the result.