-
- All Known Subinterfaces:
CallGraphNodeToArgs
,CallGraphNodeToRecv
public interface GraphNode
The type of an execution graph node.See
org.kink_lang.kink.hostfun.graph
for usage.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HostResult
evaluateIn(HostContext c)
Evaluates the execution graph in the context.
-
-
-
Method Detail
-
evaluateIn
HostResult evaluateIn(HostContext c)
Evaluates the execution graph in the context.Use
HostContext.call(GraphNode)
instead of calling this method directly.- Parameters:
c
- the context of the host fun action.- Returns:
- the HostResult to evaluate the graph.
-
-