Class PlannedNode_1_0

    • Field Detail

      • dependencies

        public final List<Long> dependencies
        The dependencies of the planned node, referencing other ids. The order of IDs in the list is insignificant.
      • mustRunAfter

        @Nullable
        public final @Nullable List<Long> mustRunAfter
        IDs of other PlannedNode_1_0 events representing nodes that this node must-run-after. The order of IDs in the list is insignificant.

        May be null if the planned node represents a transform.

      • shouldRunAfter

        @Nullable
        public final @Nullable List<Long> shouldRunAfter
        IDs of other PlannedNode_1_0 events representing nodes that this node should-run-after. The order of IDs in the list is insignificant.

        May be null if the planned node represents a transform.

      • finalizedBy

        @Nullable
        public final @Nullable List<Long> finalizedBy
        IDs of other PlannedNode_1_0 events representing nodes that finalize this node. The order of IDs in the list is insignificant.

        May be null if the planned node represents a transform.

    • Constructor Detail

      • PlannedNode_1_0

        public PlannedNode_1_0​(long id,
                               List<Long> dependencies,
                               @Nullable
                               @Nullable List<Long> mustRunAfter,
                               @Nullable
                               @Nullable List<Long> shouldRunAfter,
                               @Nullable
                               @Nullable List<Long> finalizedBy)