![JAR search and dependency download from the Maven repository](/logo.png)
com.nitorcreations.willow.eventhandler.EventHandlerModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of willow-eventhandler Show documentation
Show all versions of willow-eventhandler Show documentation
Willow generic event handler
The newest version!
package com.nitorcreations.willow.eventhandler;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import com.google.inject.AbstractModule;
/**
* Guice module for injecting event handler dependencies.
*
* @author mtommila
*/
public class EventHandlerModule extends AbstractModule {
@Override
protected void configure() {
bind(ExecutorService.class).toInstance(Executors.newCachedThreadPool());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy