ParallelFlow

class ParallelFlow : Node


A set of one or more Automation nodes that execute in parallel.

Summary

Public constructors

ParallelFlow(nodes: List<Node>, joinSemantic: JoinSemanticType)

Create a ParallelFlow instance from a list of nodes and a join type.

Public properties

JoinSemanticType

The join type.

List<Node>

The Node instances within the ParallelFlow.

Inherited properties

From com.google.home.automation.Node
String?

String identifier of this node.

Public constructors

ParallelFlow

ParallelFlow(nodes: List<Node>, joinSemantic: JoinSemanticType)

Create a ParallelFlow instance from a list of nodes and a join type.

Parameters
nodes: List<Node>

The Node instances to include in the ParallelFlow.

joinSemantic: JoinSemanticType

The join type.

Public properties

joinSemantic

val joinSemanticJoinSemanticType

The join type.

nodes

val nodesList<Node>

The Node instances within the ParallelFlow.