verteilen-core 1.4.84 → 1.4.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/interface/execute.d.ts +0 -29
- package/package.json +1 -1
|
@@ -3,35 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { Job } from "./base";
|
|
5
5
|
import { ExecuteState } from "./enum";
|
|
6
|
-
import { ExecuteRecord } from "./log";
|
|
7
|
-
export interface IExecuteManager {
|
|
8
|
-
Update(): void;
|
|
9
|
-
Stop(): void;
|
|
10
|
-
Register(): void;
|
|
11
|
-
Clean(): void;
|
|
12
|
-
Release(): void;
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* **Server Execute Record**\
|
|
16
|
-
* A package with execution worker and output log record
|
|
17
|
-
*/
|
|
18
|
-
export interface ExecutePair {
|
|
19
|
-
/**
|
|
20
|
-
* **Execute Manager Instance**\
|
|
21
|
-
* The main execute worker
|
|
22
|
-
*/
|
|
23
|
-
manager?: IExecuteManager;
|
|
24
|
-
/**
|
|
25
|
-
* **Execute Record Data**\
|
|
26
|
-
* To store the state which can be display at the frontend
|
|
27
|
-
*/
|
|
28
|
-
record?: ExecuteRecord;
|
|
29
|
-
/**
|
|
30
|
-
* **Extra Data**\
|
|
31
|
-
* The counter for trigger update event in vue
|
|
32
|
-
*/
|
|
33
|
-
meta?: any;
|
|
34
|
-
}
|
|
35
6
|
/**
|
|
36
7
|
* Group state of the job execution
|
|
37
8
|
*/
|