Hello,
I wanted to understand how the push and pull operations work on the list. If I don't place a breath in the push to the list, I get a node error...
time: 2.000000 exception: FlexScript exception: Retrieving Inf1 label property on node that does not exist at MODEL:/Tools/ProcessFlow/ProcessFlow/Assign Labels>labels/1/2 at line 0
What I understand happens is that the token is destroyed before being able to assign the label to the token that does the pull.
My goal is to use this list as a live record of pending tasks. These are pushed by tokens that would read data from a global table. The tasks are extracted by another independent token and flow. If I want to collect information from any of the labels that the puller token carries, I can't if I delete it or if the deletion and label assignment happen at the same time.
Can lists be created that do not depend on the elements that create them, such as tokens, items, etc., but only as records that come in and out? If we didn't have a label on the token that does the push to serve as a key, we could have an auto-increment ID like in databases. This way, the token that does the pull removes the task and takes the information from the fields registered in the list.
Can the list be configured to work with this concept, or must they always be linked to the element that made the entry?