Home | History | Annotate | Download | only in compress

Lines Matching defs:executor

24 import java.util.concurrent.Executor;
34 * The executor that does the work.
37 private final Executor executor;
40 * Compressor that delegates execution into the given executor.
41 * @param executor the executor that will do the compress
43 public ExecutorCompressor(@Nonnull Executor executor) {
44 this.executor = executor;
52 executor.execute(() -> {