io.nats.streaming.protobuf.SubscriptionRequestOrBuilder 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 SubscriptionRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:pb.SubscriptionRequest)
com.google.protobuf.MessageOrBuilder {
/**
* optional string clientID = 1;
*
*
* ClientID
*
*/
java.lang.String getClientID();
/**
* optional string clientID = 1;
*
*
* ClientID
*
*/
com.google.protobuf.ByteString
getClientIDBytes();
/**
* optional string subject = 2;
*
*
* Formal subject to subscribe to, e.g. foo.bar
*
*/
java.lang.String getSubject();
/**
* optional string subject = 2;
*
*
* Formal subject to subscribe to, e.g. foo.bar
*
*/
com.google.protobuf.ByteString
getSubjectBytes();
/**
* optional string qGroup = 3;
*
*
* Optional queue group
*
*/
java.lang.String getQGroup();
/**
* optional string qGroup = 3;
*
*
* Optional queue group
*
*/
com.google.protobuf.ByteString
getQGroupBytes();
/**
* optional string inbox = 4;
*
*
* Inbox subject to deliver messages on
*
*/
java.lang.String getInbox();
/**
* optional string inbox = 4;
*
*
* Inbox subject to deliver messages on
*
*/
com.google.protobuf.ByteString
getInboxBytes();
/**
* optional int32 maxInFlight = 5;
*
*
* Maximum inflight messages without an ack allowed
*
*/
int getMaxInFlight();
/**
* optional int32 ackWaitInSecs = 6;
*
*
* Timeout for receiving an ack from the client
*
*/
int getAckWaitInSecs();
/**
* optional string durableName = 7;
*
*
* Optional durable name which survives client restarts
*
*/
java.lang.String getDurableName();
/**
* optional string durableName = 7;
*
*
* Optional durable name which survives client restarts
*
*/
com.google.protobuf.ByteString
getDurableNameBytes();
/**
* optional .pb.StartPosition startPosition = 10;
*
*
* Start position
*
*/
int getStartPositionValue();
/**
* optional .pb.StartPosition startPosition = 10;
*
*
* Start position
*
*/
io.nats.streaming.protobuf.StartPosition getStartPosition();
/**
* optional uint64 startSequence = 11;
*
*
* Optional start sequence number
*
*/
long getStartSequence();
/**
* optional int64 startTimeDelta = 12;
*
*
* Optional start time
*
*/
long getStartTimeDelta();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy