Class ActorRefFactoryAdapter
- java.lang.Object
-
- akka.actor.typed.internal.adapter.ActorRefFactoryAdapter
-
public class ActorRefFactoryAdapter extends java.lang.Object
INTERNAL API
-
-
Constructor Summary
Constructors Constructor Description ActorRefFactoryAdapter()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> ActorRef<T>
spawn(ActorRefFactory actorRefFactory, Behavior<T> behavior, java.lang.String name, Props props, boolean rethrowTypedFailure)
static <T> ActorRef<T>
spawnAnonymous(ActorRefFactory context, Behavior<T> behavior, Props props, boolean rethrowTypedFailure)
-
-
-
Method Detail
-
spawnAnonymous
public static <T> ActorRef<T> spawnAnonymous(ActorRefFactory context, Behavior<T> behavior, Props props, boolean rethrowTypedFailure)
-
spawn
public static <T> ActorRef<T> spawn(ActorRefFactory actorRefFactory, Behavior<T> behavior, java.lang.String name, Props props, boolean rethrowTypedFailure)
-
-