Edge

data class Edge(val from: String, val to: String)(source)

A directed edge connecting two nodes in a pipeline graph.

Edges define the data flow between nodes. They can optionally include a transformation function applied during data transfer.

Constructors

Link copied to clipboard
constructor(from: String, to: String)

Properties

Link copied to clipboard

Name of the source node.

Link copied to clipboard
val to: String

Name of the target node.