Package akka.javasdk.client
Interface EventSourcedEntityClient
@DoNotInherit
public interface EventSourcedEntityClient
Not for user extension
-
Method Summary
Modifier and TypeMethodDescription<T,
R> ComponentMethodRef <R> method
(akka.japi.function.Function<T, EventSourcedEntity.Effect<R>> methodRef) Pass in an Event Sourced Entity command handler method reference, e.g.<T,
A1, R> ComponentMethodRef1 <A1, R> method
(akka.japi.function.Function2<T, A1, EventSourcedEntity.Effect<R>> methodRef) Pass in an Event Sourced Entity command handler method reference, e.g.
-
Method Details
-
method
<T,R> ComponentMethodRef<R> method(akka.japi.function.Function<T, EventSourcedEntity.Effect<R>> methodRef) Pass in an Event Sourced Entity command handler method reference, e.g.UserEntity::create
-
method
<T,A1, ComponentMethodRef1<A1,R> R> method(akka.japi.function.Function2<T, A1, EventSourcedEntity.Effect<R>> methodRef) Pass in an Event Sourced Entity command handler method reference, e.g.UserEntity::update
-