File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -233,6 +233,8 @@ ETaskSchedulerError = class(Exception);
233
233
procedure DoExecute ;
234
234
procedure DoException (aException : Exception);
235
235
procedure DoTerminate ;
236
+ procedure Enable ;
237
+ procedure Disable ;
236
238
{ $IFNDEF FPC}
237
239
property Param[index : Integer] : TFlexValue read GetParam write SetParam; default;
238
240
property Param[const Name : string] : TFlexValue read GetParam write SetParam; default;
@@ -381,6 +383,8 @@ TTask = class(TInterfacedObject,ITask)
381
383
function MaxRetries : Integer;
382
384
function LastException : Exception;
383
385
function CircuitBreaked : Boolean;
386
+ procedure Disable ;
387
+ procedure Enable ;
384
388
end ;
385
389
386
390
TWorkTask = class (TTask,IWorkTask)
@@ -1133,6 +1137,11 @@ destructor TTask.Destroy;
1133
1137
inherited ;
1134
1138
end ;
1135
1139
1140
+ procedure TTask.Disable ;
1141
+ begin
1142
+ fEnabled := False;
1143
+ end ;
1144
+
1136
1145
procedure TTask.DoException (aException : Exception);
1137
1146
begin
1138
1147
fTaskStatus := TWorkTaskStatus.wtsException;
@@ -1221,6 +1230,11 @@ procedure TTask.DoTerminate;
1221
1230
if Assigned(fTerminateProc) then fTerminateProc(Self);
1222
1231
end ;
1223
1232
1233
+ procedure TTask.Enable ;
1234
+ begin
1235
+ fEnabled := True;
1236
+ end ;
1237
+
1224
1238
function TTask.GetIdTask : Int64;
1225
1239
begin
1226
1240
Result := fIdTask;
You can’t perform that action at this time.
0 commit comments