-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Persist a data structure throughout Long run #1
Comments
Hi, unfortunately, variables in memory cannot be used between LongRun's scheduled processes. |
I actually managed to get it mostly working by creating the object within the longrun init function
The only challenge I have now is that the longrun process iterates for the length of the object so I have to get the object once to set the run length and then set up again in the init function. Is there a way to change the number of iterations from the init function? |
Sorry, it doesn't have that feature at this time. |
Hi I have a dictionary style object that is being interated over for my longrun process, whilst the initial run works, the schedule run fails as it can access the object any longer. Can you advise on how i might make it persist?
The text was updated successfully, but these errors were encountered: