Re: [akka-user] AKKA STREAMS - Flattening Stream of streams \ Architecture Question

2015-12-20 Thread Roland Kuhn
Hi Alex, sorry, this fell through the cracks: creating a source of sources is not a problem, you can flatMapConcat them and each one will only be materialized once its turn has come. This means that if the Source is not bound to a running DB query but instead initializes the query after materia

Re: [akka-user] Log4j2 Async Logger

2015-12-20 Thread Guido Medina
Hi Heiko, Now I could say hi 'cause I got my laptop back, my wife hijacked it few hours ago. Here is the situation I'm facing which in the end is nobody's fault, bunch of APIs using different logging facilities, at the moment here is the list of APIs that logs: - Akka with actor, remote and

Re: [akka-user] Log4j2 Async Logger

2015-12-20 Thread Heiko Seeberger
Got it. Unfortunately that’s not possible right now because of the design of Akka’s logging facility which is made up from a frontend (the API you actually use for logging, based on Akka’s Actor based event stream) and the specific backend (e.g. akka-log4j). Maybe something to consider for Akka

Re: [akka-user] Log4j2 Async Logger

2015-12-20 Thread Guido Medina
Sorry for brevity writing from phone which I hate. In a nutshell I would like your plugin akka-log4j to offer an extra class to log directly without an actor in between which is your current implementation, same applies for akka-slf4j. That way Akka system has a registered logger and my actors