-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
CloudAPI.LongPolling.pas
67 lines (56 loc) · 1.17 KB
/
CloudAPI.LongPolling.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
59
60
61
62
63
64
65
66
67
unit CloudAPI.LongPolling;
interface
uses
System.Classes;
type
TcaLongPolling = class(TObject)
private
FPollingInterval: Integer;
FIsActive: Boolean;
FThread: TThread;
protected
procedure SetIsActive(const Value: Boolean);
procedure Execute; virtual; abstract;
public
constructor Create; virtual;
procedure Start;
procedure Stop;
public
property IsActive: Boolean read FIsActive write SetIsActive;
property PollingInterval: Integer read FPollingInterval write FPollingInterval default 1000;
end;
implementation
uses
System.SysUtils;
{ TcaLongPolling }
constructor TcaLongPolling.Create;
begin
inherited Create;
FPollingInterval := 1000;
end;
procedure TcaLongPolling.SetIsActive(const Value: Boolean);
begin
if FIsActive = Value then
Exit;
FIsActive := Value;
if FIsActive then
begin
FThread := TThread.CreateAnonymousThread(Execute);
FThread.FreeOnTerminate := False;
FThread.Start;
end
else
begin
FIsActive := False;
FreeAndNil(FThread);
end;
end;
procedure TcaLongPolling.Start;
begin
IsActive := True;
end;
procedure TcaLongPolling.Stop;
begin
IsActive := False;
end;
end.