Is it possible to resumeFromSync() with arguments? #252
Answered
by
ZwFink
qedrohenrique
asked this question in
Q&A
-
Let's say i have a Chare that has a method defined by:
and a resumeFromSync defined by:
How do i change resumeFromSync in order to it call run with the same A value the other Chare had? |
Beta Was this translation helpful? Give feedback.
Answered by
ZwFink
Apr 20, 2024
Replies: 1 comment 2 replies
-
There is no way to |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
qedrohenrique
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is no way to
resumeFromSync
with arguments. It's probably easiest to saveA
as a class member sorun
can access it.