[akka-user] Re: Akka Camel and Akka Streams

2017-07-13 Thread 'Andreas Gies' via Akka User List
Hi, thanks for the pointer to the Camel docs. I knew I had a blindspot somewhere. Best regards Andreas Am Dienstag, 11. Juli 2017 14:26:09 UTC+2 schrieb Andreas Gies: > > Hello HAkkers, > > we are maintaining an integration framework (OSGi) project built on top of >

[akka-user] Akka Camel and Akka Streams

2017-07-11 Thread 'Andreas Gies' via Akka User List
Hello HAkkers, we are maintaining an integration framework (OSGi) project built on top of ActiveMQ, Spray and Camel implemented in Scala [1] Most of our internal API's rely on Akka and some also on the Akka-Camel integration. With the next major release we plan to upgrade our Spray routes

Re: [akka-user] JMX Akka

2014-05-28 Thread Andreas Gies
Thanks Konrad, I am aware of kamon.io and will definitely have a look - just wanted to explore my options. Currently the monitoring sits on my todo-list, but will come back to it soon. Best regards Andreas -- Read the docs: http://akka.io/docs/ Check the FAQ:

Re: [akka-user] Beginner Question: Is This a Good Enough Actor Design?

2014-05-20 Thread Andreas Gies
Hi to me it sounds like you are modelling something like a pipeline per request. In addition to what Martynas has suggested, you may want to get the EA version of Akka in Action. They describe a couple of design patterns by translating quite common Enterprise Integration patterns to Akka.

Re: [akka-user] When to create an extension ?

2014-05-16 Thread Andreas Gies
want to create a per actor system global service you can easily do that with an extension. B/ On 15 May 2014 at 14:49:55, Andreas Gies (andre...@googlemail.comjavascript:) wrote: Hello Hakkers, I was wondering what the reasons would be to develop an extension rather than a plain Akka

[akka-user] Notification when an actor becomes available ?

2014-05-08 Thread Andreas Gies
Hello Hakkers, I am working on an application that uses OSGI under the covers for its modularization requirements. I have a scenario where a bundle provides an actor that gathers events and redistributes them to a group of listeners. In OSGi the gathering actor may come and go. While it is

Re: [akka-user] Configuration approach for Akka in OSGi

2014-05-08 Thread Andreas Gies
the ActorSystem upon every config change. Regards, Roland On Tue, May 6, 2014 at 11:50 AM, Andreas Gies andre...@googlemail.comjavascript: wrote: Hello Hakkers, today I am interested how you usually configure your bundles inside an OSGi container. I can easily access

Re: [akka-user] Re: Akka OSGI renewed

2014-05-08 Thread Andreas Gies
Page http://akka.io/community? Regards, Roland On Tue, May 6, 2014 at 3:58 PM, Andreas Gies andre...@googlemail.comjavascript: wrote: Hello Hakkers, following this discussion, I have made some progress in getting an actor based API around the OSGI framework going. For those

Re: [akka-user] Configuration approach for Akka in OSGi

2014-05-08 Thread Andreas Gies
Hi Roland, before I answer I should say that I haven't tested the approach you have suggested as of yet and therefore its more like a theoretical exercise for now. I'll try to explain the concern I have: Most of my applications today are in retail space or within the airport industry (funny

[akka-user] Configuration approach for Akka in OSGi

2014-05-06 Thread Andreas Gies
Hello Hakkers, today I am interested how you usually configure your bundles inside an OSGi container. I can easily access the application.conf provided with Akka itself to get to all the default values. I can also provide bundle specific configuration in separate files and my bundle would

[akka-user] Re: Akka OSGI renewed

2014-05-06 Thread Andreas Gies
Hello Hakkers, following this discussion, I have made some progress in getting an actor based API around the OSGI framework going. For those interested, the project is located at [1]. There is some documentation at [2] - [4]. [1] https://github.com/woq/de.woq.osgi.java [2]

[akka-user] Re: Akka OSGI renewed

2014-04-25 Thread Andreas Gies
Hello, thanks for your responses. @Roman: There is no problem with the example on github. I haven't tried running it, but I took inspiration from it to set up Akka in my container. My question is in fact a state of the union question. What I was after was whether some work has already been