Interface PersistentActorRepository
-
public interface PersistentActorRepository- Author:
- Joost van de Wijgerd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontains(ShardKey shard, String actorId)voiddelete(ShardKey shard, String actorId)PersistentActor<ShardKey>get(ShardKey shard, String actorId)voidupdate(ShardKey shard, PersistentActor persistentActor)voidupdateAsync(ShardKey shard, PersistentActor persistentActor, InternalMessage message, MessageHandlerEventListener messageHandlerEventListener)
-
-
-
Method Detail
-
update
void update(ShardKey shard, PersistentActor persistentActor) throws IOException
- Throws:
IOException
-
updateAsync
void updateAsync(ShardKey shard, PersistentActor persistentActor, InternalMessage message, MessageHandlerEventListener messageHandlerEventListener) throws IOException
- Throws:
IOException
-
get
PersistentActor<ShardKey> get(ShardKey shard, String actorId) throws IOException
- Throws:
IOException
-
-