Skip to content

Commit ec81447

Browse files
committed
[QuickThreads] >> ITask <-> TTask >> Added Enable Disable methods.
1 parent 0332033 commit ec81447

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Quick.Threads.pas

+14
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ ETaskSchedulerError = class(Exception);
233233
procedure DoExecute;
234234
procedure DoException(aException : Exception);
235235
procedure DoTerminate;
236+
procedure Enable;
237+
procedure Disable;
236238
{$IFNDEF FPC}
237239
property Param[index : Integer] : TFlexValue read GetParam write SetParam; default;
238240
property Param[const Name : string] : TFlexValue read GetParam write SetParam; default;
@@ -381,6 +383,8 @@ TTask = class(TInterfacedObject,ITask)
381383
function MaxRetries : Integer;
382384
function LastException : Exception;
383385
function CircuitBreaked : Boolean;
386+
procedure Disable;
387+
procedure Enable;
384388
end;
385389

386390
TWorkTask = class(TTask,IWorkTask)
@@ -1133,6 +1137,11 @@ destructor TTask.Destroy;
11331137
inherited;
11341138
end;
11351139

1140+
procedure TTask.Disable;
1141+
begin
1142+
fEnabled := False;
1143+
end;
1144+
11361145
procedure TTask.DoException(aException : Exception);
11371146
begin
11381147
fTaskStatus := TWorkTaskStatus.wtsException;
@@ -1221,6 +1230,11 @@ procedure TTask.DoTerminate;
12211230
if Assigned(fTerminateProc) then fTerminateProc(Self);
12221231
end;
12231232

1233+
procedure TTask.Enable;
1234+
begin
1235+
fEnabled := True;
1236+
end;
1237+
12241238
function TTask.GetIdTask: Int64;
12251239
begin
12261240
Result := fIdTask;

0 commit comments

Comments
 (0)