[][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.

Modules

gc

Structs

ActorStore

Lookup structure for storing and retrieving ActorRefs.

Traits

ActorLookup