![JAR search and dependency download from the Maven repository](/logo.png)
ratpack.rx2.internal.BlockingExecutorBackedScheduler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ratpack-rx2 Show documentation
Show all versions of ratpack-rx2 Show documentation
Ratpack kotlin dsl library
The newest version!
package ratpack.rx2.internal;
import ratpack.exec.ExecController;
import java.util.concurrent.ExecutorService;
public class BlockingExecutorBackedScheduler extends ExecutorBackedScheduler {
public BlockingExecutorBackedScheduler(ExecController execController) {
super(execController);
}
@Override
ExecutorService getExecutor() {
return execController.getBlockingExecutor();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy