com.instaclustr.threading.ExecutorsModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Common classes and utilities integrated with various projects
package com.instaclustr.threading;
import com.google.inject.AbstractModule;
import com.google.inject.Provides;
import com.google.inject.Singleton;
import com.instaclustr.threading.Executors.FixedTasksExecutorSupplier;
public class ExecutorsModule extends AbstractModule {
@Provides
@Singleton
Executors.ExecutorServiceSupplier getFileUploaderExecutorSupplier() {
return new FixedTasksExecutorSupplier();
}
}