ISiloLifecycle Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The observable silo lifecycle.
public interface ISiloLifecycle : Orleans.ILifecycleObservable
type ISiloLifecycle = interface
interface ILifecycleObservable
Public Interface ISiloLifecycle
Implements ILifecycleObservable
- Derived
- Implements
Remarks
This type is usually used as the generic parameter in ILifecycleParticipant<TLifecycleObservable> as a means of participating in the lifecycle stages of a silo.
Properties
HighestCompletedStage |
The highest lifecycle stage which has completed starting. |
LowestStoppedStage |
The lowest lifecycle stage which has completed stopping. |
Methods
Subscribe(String, Int32, ILifecycleObserver) |
Subscribe for notification when a stage is reached while starting or stopping. (Inherited from ILifecycleObservable) |
Extension Methods
Subscribe(ILifecycleObservable, Int32, ILifecycleObserver) |
Creates a disposable subscription to the lifecycle. |
Subscribe(ILifecycleObservable, String, Int32, Func<CancellationToken,Task>, Func<CancellationToken,Task>) |
Creates a disposable subscription to the lifecycle. |
Subscribe(ILifecycleObservable, String, Int32, Func<CancellationToken,Task>) |
Creates a disposable subscription to the lifecycle. |
Subscribe<TObserver>(ILifecycleObservable, Int32, ILifecycleObserver) |
Creates a disposable subscription to the lifecycle. |
Subscribe<TObserver>(ILifecycleObservable, Int32, Func<CancellationToken,Task>, Func<CancellationToken,Task>) |
Creates a disposable subscription to the lifecycle. |
Subscribe<TObserver>(ILifecycleObservable, Int32, Func<CancellationToken,Task>) |
Creates a disposable subscription to the lifecycle. |