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?
98 Views Asked by Amal Shalika At
1
There are 1 best solutions below
Related Questions in .NET
- file download method in visual studio 2017
- Repository manager receives the wrong connection string in .net core
- MongoDb not connecting C#
- The current .NET SDK does not support targeting .NET Core 6.0. Brand new WPF Project VS Community 2022 17.9.5
- Why Scanning GSI on DynamoDb doesnt work as fast as expected when using CONTAINS?
- Are "blittable types" really unmanaged types for StructLayout Sequential
- Failed to fetch dynamically imported module on Blazor JS Interop
- Problem to upload several images per one request
- Implementing Azure AD B2C Authentication in .NET 8 Blazor Project (RenderMode: InteractiveAuto)
- Stripe connect payout - throws exceptions
- 'IOException: The cloud file provider is not running', when trying to delete 'cloud' folder
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- Convert C# DateTime.Ticks to Bigquery DateTime Format
- Socket.io nodejs server .NET connection
- Producer Batching Service Bus Vs Kafka
Related Questions in ACTOR
- `assumeIsolated(_:)` fails with DispatchSerialQueue as custom Executor in Actor
- Await.result always hangs/timeout and never returns result (Scala - Akka actors)
- How to make an Actor's isolated state observable
- Transform/replace a Class in an Actor in IBM Rhapsody model
- How to regulate the speed between actors in java?
- I want to display an array managed by Actor in UITableView
- Mutation of captured var in actor isolated context
- akka.cluster.ddata.Replicator$Internal$DeltaPropagation message from clusterReceptionist replicator is dropped because it exceeds the size limit
- Actix future resolve with wait(ctx). Get result to calling scope
- In swift, do we need "@MainActor in" inside the closure of an other object written inside ViewController?
- ivar of Swift Actor in objc code: atomic or nonatomic?
- Calling into AVFoundation on a background thread interferes with SwiftUI animation
- Does the sleep method work insied a dramatiq actor?
- AtMost Once Message Delivery in Actor Cluster Sharding Entity Actor
- If I had an object user in sequence diagram and I wanted to make that object interact with the interface,should I use it's own functions?
Related Questions in AKKA.NET
- akka.presistance.postgresql too many clients already
- Troubleshooting Akka.NET Streams: Messages Not Reaching Remote Sink Actor in Source-Sink Pattern
- How to clear the mailbox when restarting an actor in Akka.NET
- Add Azure App Service to a Cluster running in two Azure VMs using Akka.Net
- Akka.net .NET Core configuration
- How to access OfferAsync method of Source.Queue when using Akka.Net Graphs?
- Akka.Management DiscoveryMethod.Config
- Akka.net - remember entities issue
- How to get reference to remote ProducerController in Akka.NET's Akka.Delivery?
- Akka.net Executing long-running actions inside an actor’s Receive method
- Akka .Net Serilog Configuration semantic logging won't work
- AKKA.NET Architecture Best practices
- Akka.Hosting - Dependancy Injection in Actor parameter
- Can an Akka.net node hosted within a container participate in a cluster outside of the container host?
- How to Implement Actor.Ask to Control the flow of data at a certain rate
Related Questions in AKKA.NET-PERSISTENCE
- Akka.net - remember entities issue
- Akka.net readJournal plugin for inmem journal plugin
- How can I force Akka.net Postgres persistence to reconnect
- How to merge events from 2 Event Sourcing systems
- Akka.net Persistence Query -Events by Tag- stream order guarantee
- Best practice for cleaning up EntityStoppedManifest journal entries for permanently terminated actors?
- At What Point is a Persisted Actor Dehydrated/Terminated?
- Akka.NET with persistence dropping messages when CPU in under high pressure?
- Method not found: Akka.Pattern.CircuitBreaker.Create
- How can I ensure that mailbox messages will not be lost if the actors process is restarted - Akka.NET?
- By default where Akka.net stores its messages?
- Conditionally change Akka.Persistence Recovery object
- Akka.net journal reader missing events
- Akka.net persistence delete messages from a certain sequence number
- Akka.Net: how to create persistent views through a journal reader
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 # Hahtags
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/