com.github.charlemaznable.bunny.client.guice.BunnyEventBusModular Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bunny-client Show documentation
Show all versions of bunny-client Show documentation
Bunny rabbits will skip hand-in-hand with baby lambs across sunny green meadows.
package com.github.charlemaznable.bunny.client.guice;
import com.github.charlemaznable.bunny.client.config.BunnyClientConfig;
import com.google.inject.Module;
public final class BunnyEventBusModular extends AbstractBunnyModular {
public BunnyEventBusModular() {
super();
}
public BunnyEventBusModular(Class extends BunnyClientConfig> configClass) {
super(configClass);
}
public BunnyEventBusModular(BunnyClientConfig configImpl) {
super(configImpl);
}
public BunnyEventBusModular(Module configModule) {
super(configModule);
}
}