(progressCallback)
| 1079 | } |
| 1080 | checkReqBody() { } |
| 1081 | enqueue(progressCallback) { |
| 1082 | return Task.enqueueNew(this, FilterTask, progressCallback) |
| 1083 | } |
| 1084 | *start(progressCallback) { |
| 1085 | if (typeof progressCallback !== "undefined" && typeof progressCallback !== "function") { |
| 1086 | throw new Error("progressCallback is not a function. progressCallback type: " + typeof progressCallback) |
nothing calls this directly
no test coverage detected