Example: ```python import executorlib from time import sleep def reply(x): sleep(10) return x with executorlib.FluxClusterExecutor(wait=False) as exe: f = exe.submit(reply, 4) prin(f.result()) ```