io.nats.commons.NatsOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nats-streaming-server Show documentation
Show all versions of nats-streaming-server Show documentation
Nats streaming server for testing which contains the original Nats streaming server
package io.nats.commons;
import java.nio.file.Path;
import java.util.logging.Level;
import java.util.logging.Logger;
//Coming soon from nats.io
public interface NatsOptions {
Integer port();
Boolean jetStream();
Boolean debug();
Path configFile();
String[] customArgs();
Logger logger();
Level logLevel();
}