deeke-script-app 1.8.4 → 1.8.5
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.
|
@@ -33,10 +33,10 @@ interface Threads {
|
|
|
33
33
|
* ThreadWrapper对象,用于管理线程
|
|
34
34
|
*/
|
|
35
35
|
interface ThreadWrapper {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
/**
|
|
37
|
+
* 启动线程
|
|
38
|
+
*/
|
|
39
|
+
start(): void;
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
42
|
* 等待线程任务完成
|
|
@@ -78,7 +78,7 @@ interface ThreadWrapper {
|
|
|
78
78
|
* 获取线程名称
|
|
79
79
|
* @returns 线程名称
|
|
80
80
|
*/
|
|
81
|
-
getName(): string
|
|
81
|
+
getName(): string;
|
|
82
82
|
|
|
83
83
|
/**
|
|
84
84
|
* 设置线程优先级
|