WithResumeTaskType set resume Task type
(types ...string)
| 79 | |
| 80 | // WithResumeTaskType set resume Task type |
| 81 | func WithResumeTaskType(types ...string) Option { |
| 82 | return OptionFunc(func(q *options) { |
| 83 | q.resumeTaskType = types |
| 84 | }) |
| 85 | } |
| 86 | |
| 87 | // WithWorkerCount set worker count |
| 88 | func WithWorkerCount(num int) Option { |
no test coverage detected