io.nats.streaming.protobuf.ConnectRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-nats-streaming Show documentation
Show all versions of java-nats-streaming Show documentation
Client library for working with the NATS messaging system.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: protocol.proto
package io.nats.streaming.protobuf;
public interface ConnectRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:pb.ConnectRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Client name/identifier.
*
*
* string clientID = 1;
*/
java.lang.String getClientID();
/**
*
* Client name/identifier.
*
*
* string clientID = 1;
*/
com.google.protobuf.ByteString
getClientIDBytes();
/**
*
* Inbox for server initiated heartbeats.
*
*
* string heartbeatInbox = 2;
*/
java.lang.String getHeartbeatInbox();
/**
*
* Inbox for server initiated heartbeats.
*
*
* string heartbeatInbox = 2;
*/
com.google.protobuf.ByteString
getHeartbeatInboxBytes();
/**
*
* Protocol the client is at.
*
*
* int32 protocol = 3;
*/
int getProtocol();
/**
*
* Connection ID, a way to uniquely identify a connection (no connection should ever have the same)
*
*
* bytes connID = 4;
*/
com.google.protobuf.ByteString getConnID();
/**
*
* Interval at which client wishes to send PINGs (expressed in seconds).
*
*
* int32 pingInterval = 5;
*/
int getPingInterval();
/**
*
* Maximum number of PINGs without a response after which the connection can be considered lost.
*
*
* int32 pingMaxOut = 6;
*/
int getPingMaxOut();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy