I want to calculate average complete time for a goods pick in giving store. Picking module will send a message with number of time to complete and store name when pick is complete to Actor A. Like wish each time it complete pick operation in different stores it sent a message with how long it takes to complete and name of the store to Actor A. The Actor stores those message in a SHARED LIST. At some time, another actor B will ask from actor A what is average time it takes to complete pick at store X. My problem is how can I store messages in SHARED LIST which will be any actor of type actor A?
How to create SHARED LIST for store objects for actor?
94 Views Asked by Amal Shalika At
1
There are 1 best solutions below
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in ACTOR
- Akka actor invoked with a function delegate - is this bad practice?
- Spray Dead Letter msg
- Is it possible to await for second response in Scala
- how to make the program pause when actor is running
- Designing Akka Supervisor Hierarchy
- Akka Java FSM by Example
- Akka actorSelection vs actorOf Difference
- Akka and two-way actor conversations
- Listening to a remote akka ActorSystem's log stream
- Akka: How to ensure that message has been received?
- Service Fabric, Akka.net and Persistent actor integration
- Akka actor cardinality
- Akka Actors Still Available After Stopped by PoisonPill
- How to handle tell/ask failure of Akka peers?
- Akka actors and shared data: thead-safe, thread-unsafe, or ThreadLocal?
Related Questions in AKKA.NET
- How to use TestKit in Akka.NET
- Testing Akka.NET's Context.Parent with TestKit
- Service Fabric, Akka.net and Persistent actor integration
- HOCON format for cluster router group?
- Akka design for Scraping
- Akka.NET + Photon Server
- Akka.Net Sending huge messages (maximum-frame-size)
- How to make Akka.NET's ClusterClient work?
- How to distinguish actor termination reason
- How to test DistributedPubSub with the TestKit in Akka.net?
- How to handle a stale akka.net remote iactorref
- AKKA.NET - Queuing and Retry
- Akka.net vs Orleans performance
- Is there any way to wait for actor to be completely stopped?
- How to connect a Xamarin Client to Akka.net
Related Questions in AKKA.NET-PERSISTENCE
- AKKA.NET - Queuing and Retry
- Akka.Persistence issues after updating to 1.3.1.0
- Conditionally change Akka.Persistence Recovery object
- By default where Akka.net stores its messages?
- Akka.Net: Custom table schema for EventJournal in Akka.Persistence.SqlServer
- Akka.NET with persistence dropping messages when CPU in under high pressure?
- Persistence failure when replaying events... System.NotSupportedException: Generic IDictionary are not yet supported
- How does Akka.NET persistence handle replaying messages containing IActorRef?
- akka.cluster and persistence delivering issue
- Problems testing mix of ReceiverActor and ReceivePersistentActor with Akka.Persistence.TestKit
- How to test akka.net persistent actors
- Ignore Akka Persistence Replay Failures
- Akka.Net and In memory peristence
- How to apply the EventBus of CQRS with Akka.net and Akka.Persistence
- Akka.net - remember entities issue
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I was achieved this by using child per entity pattern in akka.net. StoreCoordinateActor create Store actor for each store place. Store actor created for each store. If particular store actor already exist used it without create new. So store actor itself has list to hold complete time. By using it can calculate avg complete time for store pick.
Here is good ref about child per entity pattern: http://gigi.nullneuron.net/gigilabs/child-per-entity-pattern-in-akka-net/