Interface CallFlowToArgs

All Superinterfaces:
CallFlowToOn, HostResult
All Known Subinterfaces:
CallFlowToRecv

public interface CallFlowToArgs extends CallFlowToOn
Call flow step to bind args.
  • Method Details

    • args

      CallFlowToOn args(Val... args)
      Binds the args to the flow.
      Parameters:
      args - the args.
      Returns:
      a call flow with the args.
    • args

      CallFlowToOn args()
      Binds no args to the flow.
      Returns:
      a call flow with the args.
    • args

      CallFlowToOn args(Val arg0)
      Binds one arg to the flow.
      Parameters:
      arg0 - the first arg.
      Returns:
      a call flow with the args.
    • args

      CallFlowToOn args(Val arg0, Val arg1)
      Binds two args to the flow.
      Parameters:
      arg0 - the first arg.
      arg1 - the second arg.
      Returns:
      a call flow with the args.
    • args

      CallFlowToOn args(Val arg0, Val arg1, Val arg2)
      Binds the three args to the flow.
      Parameters:
      arg0 - the first arg.
      arg1 - the second arg.
      arg2 - the third arg.
      Returns:
      a call flow with the args.
    • args

      CallFlowToOn args(Val arg0, Val arg1, Val arg2, Val arg3)
      Binds the four args to the flow.
      Parameters:
      arg0 - the first arg.
      arg1 - the second arg.
      arg2 - the third arg.
      arg3 - the fourth arg.
      Returns:
      a call flow with the args.
    • args

      CallFlowToOn args(Val arg0, Val arg1, Val arg2, Val arg3, Val arg4)
      Binds the five args to the flow.
      Parameters:
      arg0 - the first arg.
      arg1 - the second arg.
      arg2 - the third arg.
      arg3 - the fourth arg.
      arg4 - the fifth arg.
      Returns:
      a call flow with the args.