I read coroutines can be serialized and deserializ...
# coroutines
g
I read coroutines can be serialized and deserialized to resume later. Are there any examples of persisting coroutine continuation is a DB to resume later by a different process? My use case is, I have a batch Job made of steps, and each step spawns an async process via MQ and suspends. The deque handler is supposed to resume/resurrect the batch process back, which can only happen if I can persist the batchJob state.