[akka-user] Akka design to create repositories.

2016-09-20 Thread Love Hasija
Will appreciate some help -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >> http://doc.akka.io/docs/akka/current/additional/faq.html >> Search the archives: https://groups.google.com/group/akka-user --- You received this message

[akka-user] Akka design to create repositories.

2016-09-19 Thread Love Hasija
Hi, I am trying to create a domain driven repository using Akka. However, i am confused with regard to what the ideal design should look like. I have domain objects like Entity and a repository needs to be created with various interfaces like findByXYZ() and add(). The requirement for

Re: [akka-user] Multiple Akka ask getting same actor reference name.

2016-07-28 Thread Love Hasija
d letters -- is that the requests or the responses that > are being dropped? If it's the responses, it might be helpful to see the > code of the master, which is likely to be the source of the problem... > > On Wed, Jul 27, 2016 at 1:20 PM, Love Hasija <love2d...@gmail.com > > wrote: >

Re: [akka-user] Multiple Akka ask getting same actor reference name.

2016-07-27 Thread Love Hasija
rns them as a *single* response to the non-Actor code... > > On Wed, Jul 27, 2016 at 5:17 AM, Love Hasija <love2d...@gmail.com > > wrote: > >> Hi, >> >> I am observing a strange behavior but I am sure, I did something wrong. >> >> I have a service cl

[akka-user] Multiple Akka ask getting same actor reference name.

2016-07-27 Thread Love Hasija
Hi, I am observing a strange behavior but I am sure, I did something wrong. I have a service class providing a DB Wrapper, which has async methods for providing services. Internally there is an actor workflow. but the service class is not part of actor system and simply invokes ask to the

Re: [akka-user] Akka Pattern for a Transactional system with multi-hop requests.

2016-07-16 Thread Love Hasija
; On Sat, Jul 16, 2016 at 9:25 AM Love Hasija <love2d...@gmail.com > > wrote: > >> Hi, >> >> I am working on solving a problem where there is a business service that >> is using HBase as a data layer and we are building secondary indexes on the >

[akka-user] Akka Pattern for a Transactional system with multi-hop requests.

2016-07-16 Thread Love Hasija
Hi, I am working on solving a problem where there is a business service that is using HBase as a data layer and we are building secondary indexes on the HBase. As you can imagine, a single business service request spawns multiple request to the DB layer within a single logical transaction