Package akka.javasdk.client
Interface TimedActionClient
public interface TimedActionClient
-
Method Summary
Modifier and TypeMethodDescription<T,
R> ComponentDeferredMethodRef <R> method
(akka.japi.function.Function<T, TimedAction.Effect> methodRef) Pass in an Action method reference, e.g.<T,
A1, R> ComponentDeferredMethodRef1 <A1, R> method
(akka.japi.function.Function2<T, A1, TimedAction.Effect> methodRef) Pass in an Action method reference, e.g.
-
Method Details
-
method
<T,R> ComponentDeferredMethodRef<R> method(akka.japi.function.Function<T, TimedAction.Effect> methodRef) Pass in an Action method reference, e.g.MyAction::create
-
method
<T,A1, ComponentDeferredMethodRef1<A1,R> R> method(akka.japi.function.Function2<T, A1, TimedAction.Effect> methodRef) Pass in an Action method reference, e.g.MyAction::create
-