`Flow.reference_tasks` should be a property
See original GitHub issueWe currently have a custom setter / getter for the reference_tasks
of a flow, only difference is that
flow.reference_tasks() # <-- you have to call it
whereas, if we implemented it as a property with getters / setters, we could have
flow.reference_tasks
as valid.
Moreover, we could keep set_reference_tasks
but
flow.reference_tasks = [t1, t2]
would also be valid syntax, equivalent (under the hood) to
flow.set_reference_tasks([t1, t2])
Issue Analytics
- State:
- Created 5 years ago
- Comments:10 (8 by maintainers)
Top Results From Across the Web
Flow Reference Component
Flow Reference routes the Mule event to another flow or subflow, ... Open the Flow Reference properties and specify the flow you want...
Read more >Flows
If the reference tasks are all successful (including any skipped tasks), the flow is considered a Success . If any reference tasks fail,...
Read more >Shared Process Flow Properties
Shared Process Flow Properties. Introduction; Name; Font; Statistics; Max Wait Timer; Max Idle Timer; Executer / Task Sequence; Assign To; Label Assignment ...
Read more >how to refer to and parse the Name property of a Data Flow ...
I would like to recycle the same Flat File Connection Manager within a given package which contains serveral different Data Flow Tasks.
Read more >19 Working with Task Flow Activities
You can add most activities to both bounded and unbounded task flows, ... the Property Inspector, select Static from the Task Flow Reference...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@cicdw @jlowin i’m reopening this issue as i think it’s probably important information for users to see on the UI whether or not a task in a flow is a ‘reference task’ and i wasn’t able to get that from the graphQL query 😕
this would be interesting to also automatically tag these tasks with
reference
display tags when being created or added to a flow.Let’s open in Cloud, this isn’t where this will get exposed.