queueobj 12.0.17 → 12.0.18
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/lib/appenders/base.js +5 -5
- package/package.json +1 -1
- package/test/package.js +1 -1
package/lib/appenders/base.js
CHANGED
|
@@ -21,7 +21,7 @@ class process_all_obj {
|
|
|
21
21
|
t.continueProcessing = t.continueProcessing.bind(t)
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
process
|
|
24
|
+
process () {
|
|
25
25
|
let t = this
|
|
26
26
|
try {
|
|
27
27
|
if (t.process_objs_item >= t.objs.length) {
|
|
@@ -88,18 +88,18 @@ class process_all_obj {
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
continueProcessing
|
|
91
|
+
continueProcessing () {
|
|
92
92
|
let t = this
|
|
93
93
|
t.process_objs_item++
|
|
94
94
|
t.setStatus('process')
|
|
95
95
|
t.parent.process_all()
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
getStatus
|
|
98
|
+
getStatus () {
|
|
99
99
|
return this.status
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
setStatus
|
|
102
|
+
setStatus (v) {
|
|
103
103
|
this.status = v
|
|
104
104
|
}
|
|
105
105
|
}
|
|
@@ -154,7 +154,7 @@ exports = module.exports = class base {
|
|
|
154
154
|
return ret_str //jrm debug
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
process_all
|
|
157
|
+
process_all () {
|
|
158
158
|
let t = this, _continue
|
|
159
159
|
if (t.process_all_obj == null) {
|
|
160
160
|
t.process_all_obj = new process_all_obj({ parent: t })
|
package/package.json
CHANGED