Class ActorProducerPipeline
TBD
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public class ActorProducerPipeline : IEnumerable<IActorProducerPlugin>, IEnumerable
Constructors
| Edit this page View SourceActorProducerPipeline(Lazy<ILoggingAdapter>, IEnumerable<IActorProducerPlugin>)
TBD
Declaration
public ActorProducerPipeline(Lazy<ILoggingAdapter> log, IEnumerable<IActorProducerPlugin> plugins)
Parameters
| Type | Name | Description |
|---|---|---|
| Lazy<ILoggingAdapter> | log | TBD |
| IEnumerable<IActorProducerPlugin> | plugins | TBD |
Properties
| Edit this page View SourceCount
TBD
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
| Edit this page View SourceAfterActorIncarnated(ActorBase, IActorContext)
Resolves and applies all plugins valid to specified underlying actor
registered in current producer pipeline to newly created actor.
Declaration
public void AfterActorIncarnated(ActorBase actor, IActorContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| ActorBase | actor | TBD |
| IActorContext | context | TBD |
BeforeActorIncarnated(ActorBase, IActorContext)
Resolves and applies all plugins valid to specified underlying actor
registered in current producer pipeline before old actor would be recycled.
Declaration
public void BeforeActorIncarnated(ActorBase actor, IActorContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| ActorBase | actor | TBD |
| IActorContext | context | TBD |
GetEnumerator()
TBD
Declaration
public IEnumerator<IActorProducerPlugin> GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<IActorProducerPlugin> | TBD |
Edit this page