Class DurableStateBehaviorWithEnforcedReplies<Command,State>

java.lang.Object
org.apache.pekko.actor.typed.Behavior<T>
org.apache.pekko.actor.typed.internal.BehaviorImpl.DeferredBehavior<Command>
org.apache.pekko.persistence.typed.state.javadsl.DurableStateBehavior<Command,State>
org.apache.pekko.persistence.typed.state.javadsl.DurableStateBehaviorWithEnforcedReplies<Command,State>

public abstract class DurableStateBehaviorWithEnforcedReplies<Command,State> extends DurableStateBehavior<Command,State>
A DurableStateBehavior that is enforcing that replies to commands are not forgotten. There will be compilation errors if the returned effect isn't a ReplyEffect, which can be created with Effects().reply, Effects().noReply, EffectBuilder.thenReply, or EffectBuilder.thenNoReply.