trait InjectedActorSupport extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- InjectedActorSupport
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def injectedChild(create: => Actor, name: String, props: (Props) => Props = identity)(implicit context: ActorContext): ActorRef
Create an injected child actor.
Create an injected child actor.
- create
A function to create the actor.
- name
The name of the actor.
- props
A function to provide props for the actor. The props passed in will just describe how to create the actor, this function can be used to provide additional configuration such as router and dispatcher configuration.
- context
The context to create the actor from.
- returns
An ActorRef for the created actor.
Support for creating injected child actors.