SequentialFlow

struct SequentialFlow
extension SequentialFlow : Equatable, Flow, Hashable, Identifiable, Node, Sendable

A set of one or more Automation Nodes that execute sequentially.

  • id

    The stable identity of the entity associated with this instance.

    Declaration

    Swift

    let id: String
  • The Node instances within the SequentialFlow.

    Declaration

    Swift

    let nodes: [any Node]
  • Returns a Boolean value indicating whether two values are equal.

    Equality is the inverse of inequality. For any values a and b, a == b implies that a != b is false.

    Declaration

    Swift

    static func == (lhs: SequentialFlow, rhs: SequentialFlow) -> Bool

    Parameters

    lhs

    A value to compare.

    rhs

    Another value to compare.

  • Returns true if the nodes are equal, false otherwise.

    Declaration

    Swift

    func isEqual(to other: any Node) -> Bool