All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.yudichev.jiotty.common.async.ExecutorModule Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package net.yudichev.jiotty.common.async;

import com.google.inject.assistedinject.FactoryModuleBuilder;
import net.yudichev.jiotty.common.inject.BaseLifecycleComponentModule;
import net.yudichev.jiotty.common.inject.ExposedKeyModule;

public final class ExecutorModule extends BaseLifecycleComponentModule implements ExposedKeyModule {
    @Override
    protected void configure() {
        install(new FactoryModuleBuilder()
                .implement(SchedulingExecutor.class, SingleThreadedSchedulingExecutor.class)
                .build(getExposedKey()));
        expose(getExposedKey());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy