Interface IChildrenContainer
INTERNAL API
Namespace: Akka.Actor.Internal
Assembly: Akka.dll
Syntax
public interface IChildrenContainer
Properties
| Edit this page View SourceChildren
TBD
Declaration
IReadOnlyCollection<IInternalActorRef> Children { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyCollection<IInternalActorRef> |
IsNormal
TBD
Declaration
bool IsNormal { get; }
Property Value
| Type | Description |
|---|---|
| bool |
IsTerminating
TBD
Declaration
bool IsTerminating { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Stats
TBD
Declaration
IReadOnlyCollection<ChildRestartStats> Stats { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyCollection<ChildRestartStats> |
Methods
| Edit this page View SourceAdd(string, ChildRestartStats)
TBD
Declaration
IChildrenContainer Add(string name, ChildRestartStats stats)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | TBD |
| ChildRestartStats | stats | TBD |
Returns
| Type | Description |
|---|---|
| IChildrenContainer | TBD |
Contains(IActorRef)
TBD
Declaration
bool Contains(IActorRef actor)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorRef | actor | TBD |
Returns
| Type | Description |
|---|---|
| bool | TBD |
Remove(IActorRef)
TBD
Declaration
IChildrenContainer Remove(IActorRef child)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorRef | child | TBD |
Returns
| Type | Description |
|---|---|
| IChildrenContainer | TBD |
Reserve(string)
TBD
Declaration
IChildrenContainer Reserve(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | TBD |
Returns
| Type | Description |
|---|---|
| IChildrenContainer | TBD |
ShallDie(IActorRef)
TBD
Declaration
IChildrenContainer ShallDie(IActorRef actor)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorRef | actor | TBD |
Returns
| Type | Description |
|---|---|
| IChildrenContainer | TBD |
TryGetByName(string, out IChildStats)
TBD
Declaration
bool TryGetByName(string name, out IChildStats stats)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | TBD |
| IChildStats | stats | TBD |
Returns
| Type | Description |
|---|---|
| bool | TBD |
TryGetByRef(IActorRef, out ChildRestartStats?)
TBD
Declaration
bool TryGetByRef(IActorRef actor, out ChildRestartStats? stats)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorRef | actor | TBD |
| ChildRestartStats | stats | TBD |
Returns
| Type | Description |
|---|---|
| bool | TBD |
Unreserve(string)
TBD
Declaration
IChildrenContainer Unreserve(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | TBD |
Returns
| Type | Description |
|---|---|
| IChildrenContainer | TBD |
Edit this page