-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathQuick.Core.Extensions.Service.Abstractions.pas
58 lines (51 loc) · 1.86 KB
/
Quick.Core.Extensions.Service.Abstractions.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
unit Quick.Core.Extensions.Service.Abstractions;
interface
uses
System.SysUtils,
Quick.Core.Logging.Abstractions,
Quick.Core.Extensions.Hosting;
type
TSvcInitializeEvent = procedure of object;
TSvcAnonMethod = reference to procedure;
TSvcRemoveEvent = procedure of object;
IHostService = interface(IHost)
['{79251D22-01C3-44EF-8E8A-4C2CAC7DA510}']
procedure Start;
procedure Stop;
procedure Install;
procedure Remove;
function CheckParams : Boolean;
function IsRunningAsService : Boolean;
end;
THostService = class(TInterfacedObject,IHostService)
private
fLogger : ILogger;
fOnExecute: TSvcAnonMethod;
fWaitForKeyOnExit: Boolean;
fOnStop: TSvcAnonMethod;
fOnStart: TSvcAnonMethod;
fOnInitialize: TSvcInitializeEvent;
fServiceName: string;
fPassword: string;
fUser: string;
fDescription: string;
public
property ServiceName : string read fServiceName write fServiceName;
property User : string read fUser write fUser;
property Password : string read fPassword write fPassword;
property Description : string read fDescription write fDescription;
property OnInitialize : TSvcInitializeEvent read fOnInitialize write fOnInitialize;
property OnStart : TSvcAnonMethod read fOnStart write fOnStart;
property OnStop : TSvcAnonMethod read fOnStop write fOnStop;
property OnExecute : TSvcAnonMethod read fOnExecute write fOnExecute;
property WaitForKeyOnExit : Boolean read fWaitForKeyOnExit write fWaitForKeyOnExit;
property Logger : ILogger read fLogger write fLogger;
procedure Start; virtual; abstract;
procedure Stop; virtual; abstract;
procedure Install; virtual; abstract;
procedure Remove; virtual; abstract;
function CheckParams : Boolean; virtual; abstract;
function IsRunningAsService : Boolean; virtual; abstract;
end;
implementation
end.