io.nats.client.TcpConnectionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnats Show documentation
Show all versions of jnats Show documentation
Client library for working with the NATS messaging system.
package io.nats.client;
class TcpConnectionFactory {
protected TcpConnection createConnection() {
return new TcpConnection();
}
}