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

io.nats.commons.NatsOptions Maven / Gradle / Ivy

Go to download

Nats streaming server for testing which contains the original Nats streaming server

There is a newer version: 0.25.7-rc.25
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy