You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Otherwise, worker output (or anything sending to the sink like actions too) could happen during a render pass and we would get a lot of:
java.lang.UnsupportedOperationException: Expected sink to not be sent to until after the render pass. Received action: EmitWorkerOutputAction(worker=TypedWorker(), key=my_worker)
If we lock handling actions in the sink during the render pass then we could allow this parallelism.
For now we can only handle single-threaded dispatchers.
The text was updated successfully, but these errors were encountered:
Otherwise, worker output (or anything sending to the sink like actions too) could happen during a render pass and we would get a lot of:
If we lock handling actions in the sink during the render pass then we could allow this parallelism.
For now we can only handle single-threaded dispatchers.
The text was updated successfully, but these errors were encountered: