Class ActorProducerPluginBase
Base actor producer pipeline plugin class.
Implements
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public abstract class ActorProducerPluginBase : IActorProducerPlugin
Methods
| Improve this Doc View SourceAfterIncarnated(ActorBase, IActorContext)
Plugin behavior applied to actor
instance when the new one is being created.
Declaration
public virtual void AfterIncarnated(ActorBase actor, IActorContext context)
Parameters
Type | Name | Description |
---|---|---|
ActorBase | actor | TBD |
IActorContext | context | TBD |
BeforeIncarnated(ActorBase, IActorContext)
Plugin behavior applied to actor
instance before the actor is being recycled.
Declaration
public virtual void BeforeIncarnated(ActorBase actor, IActorContext context)
Parameters
Type | Name | Description |
---|---|---|
ActorBase | actor | TBD |
IActorContext | context | TBD |
CanBeAppliedTo(Type)
By default derivatives of this plugin will be applied to all actors.
Declaration
public virtual bool CanBeAppliedTo(Type actorType)
Parameters
Type | Name | Description |
---|---|---|
Type | actorType | TBD |
Returns
Type | Description |
---|---|
Boolean | TBD |