-
- All Superinterfaces:
CallFlowToOn
,HostResult
- All Known Subinterfaces:
CallFlowToRecv
public interface CallFlowToArgs extends CallFlowToOn
Call flow step to bind args.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CallFlowToOn
args()
Binds no args to the flow.CallFlowToOn
args(Val arg0)
Binds one arg to the flow.CallFlowToOn
args(Val... args)
Binds the args to the flow.CallFlowToOn
args(Val arg0, Val arg1)
Binds two args to the flow.CallFlowToOn
args(Val arg0, Val arg1, Val arg2)
Binds the three args to the flow.CallFlowToOn
args(Val arg0, Val arg1, Val arg2, Val arg3)
Binds the four args to the flow.CallFlowToOn
args(Val arg0, Val arg1, Val arg2, Val arg3, Val arg4)
Binds the five args to the flow.-
Methods inherited from interface org.kink_lang.kink.hostfun.CallFlowToOn
on
-
Methods inherited from interface org.kink_lang.kink.hostfun.HostResult
makeHostResultCore
-
-
-
-
Method Detail
-
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.
-
-