Package akka.cluster.sharding.internal
Interface RememberEntitiesProvider
-
public interface RememberEntitiesProvider
INTERNAL APICreated once for the shard guardian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Props
coordinatorStoreProps()
Called once per started shard coordinator to create the remember entities coordinator store.Props
shardStoreProps(java.lang.String shardId)
Called once per started shard to create the remember entities shard store
-
-
-
Method Detail
-
coordinatorStoreProps
Props coordinatorStoreProps()
Called once per started shard coordinator to create the remember entities coordinator store.Note that this is not used for the deprecated persistent coordinator which has its own impl for keeping track of remembered shards.
- Returns:
- an actor that handles the protocol defined in
RememberEntitiesCoordinatorStore
-
shardStoreProps
Props shardStoreProps(java.lang.String shardId)
Called once per started shard to create the remember entities shard store- Returns:
- an actor that handles the protocol defined in
RememberEntitiesShardStore
-
-