(ExecutorService executor)
| 112 | } |
| 113 | |
| 114 | @NonNull |
| 115 | public SimpleTask<T> setExecutor(ExecutorService executor) { |
| 116 | this.localExecutor = executor; |
| 117 | return this; |
| 118 | } |
| 119 | |
| 120 | public SimpleTask<T> serial() { |
| 121 | return setExecutor(serialExecutor); |