Class CheckpointInstaller
Abstract base class for installing the Checkpoint service.
Implements
Inherited Members
Namespace: Serenity.Checkpoint.Installation.Installers
Assembly: Serenity.Checkpoint.Installation.dll
Syntax
public abstract class CheckpointInstaller : IInstaller
Remarks
Concrete implementations override Install(ILogService) to create the service, providing a checkpoint store for persistence.
Constructors
CheckpointInstaller()
Declaration
protected CheckpointInstaller()
Fields
_service
Declaration
protected ICheckpointService _service
Field Value
| Type | Description |
|---|---|
| ICheckpointService | The installed checkpoint service. |
Methods
GetService()
Gets the installed checkpoint service.
Declaration
public ICheckpointService GetService()
Returns
| Type | Description |
|---|---|
| ICheckpointService | The installed ICheckpointService. |
Install(ILogService)
Installs the Checkpoint service.
Declaration
public abstract void Install(ILogService logService)
Parameters
| Type | Name | Description |
|---|---|---|
| ILogService | logService | The logging service for diagnostic output. |