Re: [akka-user] Dynamic flow multiplexer

2016-01-29 Thread Jakob Odersky
and materialize the > consumers as Subscribers and connect them to the Publisher? > > -- > Cheers, > √ > > On Jan 28, 2016 6:28 AM, "Jakob Odersky" <ja...@odersky.com> wrote: >> >> What is the best approach to "connecting" streams at run-time

Re: [akka-user] Re: ANNOUNCE: Akka 2.4.1-RC1 (including streams and http)

2016-01-27 Thread Jakob Odersky
Is the GitHub master up to date? My project worked perfectly with streams experimental 2.0.2 but is unable to compile with 2.4.2-RC1. Specifically, I am implementing a custom stage and referring to `akka.stream.stage.GraphStageLogic.getStageActorRef`. With the lastest RC, the compiler fails: "not

[akka-user] Dynamic flow multiplexer

2016-01-27 Thread Jakob Odersky
What is the best approach to "connecting" streams at run-time? My use-case is a server that has an established connection to some backend service, modeled as a flow. Several clients can connect through websockets, also modeled as flows. If the number of clients was known at materialization, this

Re: [akka-user] [akka-actor] ActorSystem Singleton Database Connection

2016-01-27 Thread Jakob Odersky
Have you considered implementing your connection as an extension but using different configurations for the different systems? http://doc.akka.io/docs/akka/current/general/configuration.html On Wed, Jan 27, 2016 at 11:55 AM, wrote: > Hello, > my actor based