Waiting for exit #2037
Replies: 1 comment
-
My initial thought is that example with a callback looks a little overcomplicated for the issue linked to the PR. For example, I believe it usually won't matter to users the specifics of how long the Fluent exit process takes, or the exit-progress status changes. What I would expect most users will actually care about is whether the Fluent processes have completely finished or not (so they can move files, etc.), and that can be addressed with a single argument addition inside the already used Is there a scenario/example where a completely asynchronous exit would make more sense? As in the issue mentioned above, the user was already expecting the Our existing |
Beta Was this translation helpful? Give feedback.
-
callback can be called every time the status changes e.g., IN_PROGRESS, COMPLETE + any realistically detectable error scenarios.
The idea is to give the caller fine control without complicating the interface, and without blocking access to Python.
Originally posted by @seanpearsonuk in #2029 (comment)
Beta Was this translation helpful? Give feedback.
All reactions