How to migrate my event stream code to 2.6.9

Hi

I am in the process of migrating my Akka project from 2.5 to 2.6.9. But there doesn’t seem to be any mention of the eventStream in the documentation for 2.6.9 that I can find. Can someone advise me as to how I should be doing it or direct me to the relevant documentation? I would imagine there would be issues with type safety that did not occur in version 2.5 for example

Thanks
Des

The event stream for typed is available through akka.actor.typed.ActorSystem.eventStream it’s now an ActorRef[akka.actor.typed.eventstream.EventStream.Command], there’s no reference docs for it but you can find the commands in the API docs here: https://doc.akka.io/api/akka/2.6/akka/actor/typed/eventstream/EventStream$.html

Great thanks