Re: [akka-user] RESTCONF streaming for events can be enabled on akka.http.

2016-12-27 Thread aarti
Thanks Rafal and Konard. I have gone through https://github.com/hseeberger/akka-sse , it helped me a lot. Will revert with doubts in between. :) On Tuesday, 27 December 2016

[akka-user] Re: Usage of Akka cluster in Docker Swarm cluster

2016-12-27 Thread Evgeny Shepelyuk
Hello, Since Docker Swarm takes the burden of maintaining dedicated service discovery registry off our shoulders, we're interested in a some sort of solution for AKKA cluster that let us avoid adopting yet another software component consul / etcd). At least we'd like smth to compare with

Re: [akka-user] Akka stream never completes

2016-12-27 Thread Sergey Sopin
Yep, thanks a lot! I completely forgot about it. вторник, 27 декабря 2016 г., 19:53:45 UTC+2 пользователь √ написал: > > eagerClose on the Merge? > > -- > Cheers, > √ > > On Dec 27, 2016 6:30 PM, "Sergey Sopin" > wrote: > >> Hi all, >> >> >> I am trying to build a flow,

Re: [akka-user] Akka stream never completes

2016-12-27 Thread Viktor Klang
eagerClose on the Merge? -- Cheers, √ On Dec 27, 2016 6:30 PM, "Sergey Sopin" wrote: > Hi all, > > > I am trying to build a flow, which will return CompletionStage with the > List inside. It looks like following: > > > private CompletionStage

[akka-user] Akka stream never completes

2016-12-27 Thread Sergey Sopin
Hi all, I am trying to build a flow, which will return CompletionStage with the List inside. It looks like following: private CompletionStage buildAndRunGraph(ArrayList sourceList) { Source source = Source.from(sourceList); Materializer materializer =

Re: [akka-user] RESTCONF streaming for events can be enabled on akka.http.

2016-12-27 Thread Rafał Krzewski
This is also the first time I've heard about RESTCONF :) I've taken a look at the specification draft [1] and it turns out, that the RESTCONF notifications [2] are provided as W3C Serrver-Sent Events [3]. Akka HTTP is end-to-end stream based, so it would be easy enough to use it to implement