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
AkkaPiObservable uses Akka's eventStream which is shared among all AkkaPiObservables (AkkaExecutors).
For example, if you subscribe a PrintEventHandler to one unit test, it will print all events from subsequent unit tests even though they use a separate AkkaExecutor.
This is ok for now, because we typically only use one AkkaExecutor at a time, but must be solved by using a custom Akka Stream.
The text was updated successfully, but these errors were encountered:
Feeling much better about the ProcessExecutor trait now. Quite a few
changes made to the implemented executors to make sure they comply.
MongoExecutor needs testing.
Introduced issue #7
AkkaPiObservable uses Akka's eventStream which is shared among all AkkaPiObservables (AkkaExecutors).
For example, if you subscribe a PrintEventHandler to one unit test, it will print all events from subsequent unit tests even though they use a separate AkkaExecutor.
This is ok for now, because we typically only use one AkkaExecutor at a time, but must be solved by using a custom Akka Stream.
The text was updated successfully, but these errors were encountered: