[][src]Module kompact::lookup

Data structures for looking up the dispatch/routing table.

Suggested approaches are: 1. Arc<Mutex>> 2. Some concurrent hashmap crate (check crates.io) 3. Thread-local caching backed by a slower lookup method (like Arc<Mutex<...>>) 4. Broadcast to all listeners, ensuring that the route/lookup exists in at least one of them.

Structs

ActorStore

Lookup structure for storing and retrieving DynActorRefs.

Enums

InsertResult

Result of an actor path insert

LookupResult

Result of an actor path lookup

Traits

ActorLookup

A trait for actor lookup mechanisms