StreamAwareEventListenerInterface::listensToStream() is a static method currently although it is only invoked on an actual instance in the EventListenerInvoker::catchUp().
We could
a) Remove the static keyword (and thus introduce a breaking change) for the next major (3.0 currently)
b) Mark the method/interface deprecated and introduce a new one for the next minor (2.7 currently)
StreamAwareEventListenerInterface::listensToStream()is a static method currently although it is only invoked on an actual instance in the EventListenerInvoker::catchUp().We could
a) Remove the
statickeyword (and thus introduce a breaking change) for the next major (3.0 currently)b) Mark the method/interface deprecated and introduce a new one for the next minor (2.7 currently)