Class ChildRestartStats
ChildRestartStats is the statistics kept by every parent Actor for every child Actor and is used for SupervisorStrategies to know how to deal with problems that occur for the children.
Implements
Inherited Members
Namespace: Akka.Actor.Internal
Assembly: Akka.dll
Syntax
public class ChildRestartStats : IChildStats
Constructors
| Edit this page View SourceChildRestartStats(IInternalActorRef, uint, long)
TBD
Declaration
public ChildRestartStats(IInternalActorRef child, uint maxNrOfRetriesCount = 0, long restartTimeWindowStartTicks = 0)
Parameters
Type | Name | Description |
---|---|---|
IInternalActorRef | child | TBD |
uint | maxNrOfRetriesCount | TBD |
long | restartTimeWindowStartTicks | TBD |
Properties
| Edit this page View SourceChild
TBD
Declaration
public IInternalActorRef Child { get; }
Property Value
Type | Description |
---|---|
IInternalActorRef |
MaxNrOfRetriesCount
TBD
Declaration
public uint MaxNrOfRetriesCount { get; }
Property Value
Type | Description |
---|---|
uint |
RestartTimeWindowStartTicks
TBD
Declaration
public long RestartTimeWindowStartTicks { get; }
Property Value
Type | Description |
---|---|
long |
Uid
TBD
Declaration
public long Uid { get; }
Property Value
Type | Description |
---|---|
long |
Methods
| Edit this page View SourceRequestRestartPermission(int, int)
TBD
Declaration
public bool RequestRestartPermission(int maxNrOfRetries, int withinTimeMilliseconds)
Parameters
Type | Name | Description |
---|---|---|
int | maxNrOfRetries | TBD |
int | withinTimeMilliseconds | TBD |
Returns
Type | Description |
---|---|
bool | TBD |