Interface IActorProducerPlugin
Plugin interface used to define
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public interface IActorProducerPlugin
Methods
| Edit this page View SourceAfterIncarnated(ActorBase, IActorContext)
Plugin behavior applied to underlying actor instance when the new one is being created.
Declaration
void AfterIncarnated(ActorBase actor, IActorContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| ActorBase | actor | TBD |
| IActorContext | context | TBD |
BeforeIncarnated(ActorBase, IActorContext)
Plugin behavior applied to underlying actor instance before the actor is being recycled.
Declaration
void BeforeIncarnated(ActorBase actor, IActorContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| ActorBase | actor | TBD |
| IActorContext | context | TBD |
CanBeAppliedTo(Type)
Determines if current plugin can be applied to provided actor based on it's type.
Declaration
bool CanBeAppliedTo(Type actorType)
Parameters
| Type | Name | Description |
|---|---|---|
| Type | actorType | TBD |
Returns
| Type | Description |
|---|---|
| bool | TBD |
Edit this page