Bassebombecraft

Bassebombecraft

18.5k Downloads

Introduce version 2 of the operator framework

Closed this issue ยท 1 comments

commented

Version 1 has the flaw that the execution context (the Operators class) is stateful.
If multiple invocations of the same operator occurs in parallel then the state is undefined, i.e. the state get updated and clear during an invocation.

Version 2 handles state differently (through the Ports class) where each invocation of an operator has its own context.

commented

Resolved with commit: c68c7d5