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

metrics_influxdb.UdpInfluxdbProtocol Maven / Gradle / Ivy

The newest version!
package metrics_influxdb;

public class UdpInfluxdbProtocol implements InfluxdbProtocol {
	public final String host;
	public final int port;

	public UdpInfluxdbProtocol(String host, int port) {
		this.host = host;
		this.port = port;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy