package adapter
Adapters between typed and classic actors and actor systems.
The underlying ActorSystem
is the classic pekko.actor.ActorSystem
which runs Pekko Typed pekko.actor.typed.Behavior on an emulation layer. In this
system typed and classic actors can coexist.
Use these adapters with import org.apache.pekko.actor.typed.scaladsl.adapter._
.
Implicit extension methods are added to classic and typed ActorSystem
,
ActorContext
. Such methods make it possible to create typed child actor
from classic parent actor, and the opposite classic child from typed parent.
watch
is also supported in both directions.
There is an implicit conversion from classic pekko.actor.ActorRef to typed pekko.actor.typed.ActorRef.
There are also converters (toTyped
, toClassic
) from typed
pekko.actor.typed.ActorRef to classic pekko.actor.ActorRef, and between classic
pekko.actor.ActorSystem and typed pekko.actor.typed.ActorSystem.
- Source
- package.scala
- Alphabetic
- By Inheritance
- adapter
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- implicit final class ClassicActorContextOps extends AnyVal
Extension methods added to pekko.actor.ActorContext.
- implicit final class ClassicActorRefOps extends AnyVal
Extension methods added to pekko.actor.ActorRef.
- implicit final class ClassicActorSystemOps extends AnyVal
Extension methods added to pekko.actor.ActorSystem.
- implicit final class ClassicSchedulerOps extends AnyVal
Extension methods added to pekko.actor.Scheduler.
- implicit final class TypedActorContextOps extends AnyVal
Extension methods added to pekko.actor.typed.scaladsl.ActorContext.
- implicit final class TypedActorRefOps extends AnyVal
Extension methods added to pekko.actor.typed.ActorRef.
- implicit final class TypedActorSystemOps extends AnyVal
Extension methods added to pekko.actor.typed.ActorSystem.
- implicit final class TypedSchedulerOps extends AnyVal
Extension methods added to pekko.actor.typed.Scheduler.
Value Members
- implicit def actorRefAdapter[T](ref: actor.ActorRef): ActorRef[T]
Implicit conversion from classic pekko.actor.ActorRef to pekko.actor.typed.ActorRef.
- object PropsAdapter
Wrap pekko.actor.typed.Behavior in a classic pekko.actor.Props, i.e.
Wrap pekko.actor.typed.Behavior in a classic pekko.actor.Props, i.e. when spawning a typed child actor from a classic parent actor. This is normally not needed because you can use the extension methods
spawn
andspawnAnonymous
on a classicActorContext
, but it's needed when using typed actors with an existing library/tool that provides an API that takes a classic pekko.actor.Props parameter. Cluster Sharding is an example of that.