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
I don't really like this method, to be honest. It feels like abstraction leaking out. That said, there shouldn't be an issue because the init method is only called internally as a way to pass the EventSourceManager implementation to the controller implementations so that they can register their EventSource implementations and ConfiguredController.init should actually never be called. Maybe we could replace that implementation by throw new UnsupportedOperationException or something like that to make it clearer?
I see that the ConfiguredController has an init method in which does:
So the underlying controller is initialized with the manager that is passed as an argument. But then the start method does something similar:
Wonder if this is correct or if this lead the controller to be initialized with two different event source manager.
The text was updated successfully, but these errors were encountered: