We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We noticed today that WSOpenNetwork#each_selected seems to be asynchronous such that:
WSOpenNetwork#each_selected
net.scenarios do |scenario| net.current_scenario = scenario net.each_selected |obj| puts scenario end end
And your scenarios are ["CAB","KST","PLT"] then you would expect the output:
["CAB","KST","PLT"]
Base CAB KST PLT
But instead you get the output:
PLT
Ultimately the definition should define this behavior as follows:
Each_Selected schedules an event to loop over all selected objects. The block is called asynchronously to the rest of the code. I.E. It runs last.
Each_Selected
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We noticed today that
WSOpenNetwork#each_selected
seems to be asynchronous such that:And your scenarios are
["CAB","KST","PLT"]
then you would expect the output:But instead you get the output:
Ultimately the definition should define this behavior as follows:
Each_Selected
schedules an event to loop over all selected objects. The block is called asynchronously to the rest of the code. I.E. It runs last.The text was updated successfully, but these errors were encountered: