com.github.charlemaznable.bunny.rabbit.config.BunnyVertxConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bunny-rabbit Show documentation
Show all versions of bunny-rabbit Show documentation
Bunny rabbits will skip hand-in-hand with baby lambs across sunny green meadows.
package com.github.charlemaznable.bunny.rabbit.config;
import com.github.charlemaznable.configservice.Config;
import com.github.charlemaznable.configservice.impl.ParseAsVertxOptions;
import io.vertx.core.VertxOptions;
@Config
public interface BunnyVertxConfig {
@Config(keyset = "VertxOptions", key = "${bunny-vertx-config:-bunny}",
defaultValue = "workerPoolSize=64\nmaxWorkerExecuteTime=60000000000\n")
@ParseAsVertxOptions
VertxOptions vertxOptions();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy