openeo-python-client icon indicating copy to clipboard operation
openeo-python-client copied to clipboard

allow inspection of job manager thread state

Open soxofaan opened this issue 4 months ago • 1 comments

Users can only start a job manager thread, and stop it, but they also might want to inspect the state: is it still running? and do something with that.

e.g. @mbuchhorn was playing with something like this:

while not manager._stop_thread:
    if not manager._stop_thread:
        visualize_something()
    time.sleep(15)

it should be possible to do that without using private _stop_thread

soxofaan avatar Oct 04 '24 07:10 soxofaan