io.nats.client.api.OrderedConsumerConfiguration 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.
The newest version!
// Copyright 2023 The NATS Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package io.nats.client.api;
import io.nats.client.support.*;
import java.time.ZonedDateTime;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import static io.nats.client.support.ApiConstants.*;
import static io.nats.client.support.JsonUtils.beginJson;
import static io.nats.client.support.JsonUtils.endJson;
import static io.nats.client.support.JsonValueUtils.*;
import static io.nats.client.support.NatsConstants.GREATER_THAN;
import static io.nats.client.support.Validator.emptyAsNull;
public class OrderedConsumerConfiguration implements JsonSerializable {
private final List filterSubjects;
private DeliverPolicy deliverPolicy;
private Long startSequence;
private ZonedDateTime startTime;
private ReplayPolicy replayPolicy;
private Boolean headersOnly;
/**
* OrderedConsumerConfiguration creation works like a builder.
* The builder supports chaining and will create a default set of options if
* no methods are calls, including setting the filter subject to ">"
*/
public OrderedConsumerConfiguration() {
startSequence = ConsumerConfiguration.LONG_UNSET;
filterSubjects = new ArrayList<>();
filterSubjects.add(GREATER_THAN);
}
public OrderedConsumerConfiguration(String json) throws JsonParseException {
this(JsonParser.parse(json));
}
public OrderedConsumerConfiguration(JsonValue v) throws JsonParseException {
this();
List list = readOptionalStringList(v, FILTER_SUBJECTS);
if (list != null) {
filterSubjects(list);
}
deliverPolicy(DeliverPolicy.get(readString(v, DELIVER_POLICY)));
startSequence(readLong(v, OPT_START_SEQ, ConsumerConfiguration.LONG_UNSET));
startTime(readDate(v, OPT_START_TIME));
replayPolicy(ReplayPolicy.get(readString(v, REPLAY_POLICY)));
headersOnly(readBoolean(v, HEADERS_ONLY, null));
}
/**
* Returns a JSON representation of this ordered consumer configuration.
* @return json ordered consumer configuration json string
*/
public String toJson() {
StringBuilder sb = beginJson();
if (filterSubjects != null && !filterSubjects.isEmpty()) {
JsonUtils.addStrings(sb, FILTER_SUBJECTS, filterSubjects);
}
if (deliverPolicy != null) {
JsonUtils.addField(sb, DELIVER_POLICY, deliverPolicy.toString());
}
JsonUtils.addFieldWhenGtZero(sb, OPT_START_SEQ, startSequence);
JsonUtils.addField(sb, OPT_START_TIME, startTime);
if (replayPolicy != null) {
JsonUtils.addField(sb, REPLAY_POLICY, replayPolicy.toString());
}
JsonUtils.addFldWhenTrue(sb, HEADERS_ONLY, headersOnly);
return endJson(sb).toString();
}
/**
* Sets the filter subject of the OrderedConsumerConfiguration.
* @param filterSubject the filter subject
* @return Builder
*/
public OrderedConsumerConfiguration filterSubject(String filterSubject) {
return filterSubjects(Collections.singletonList(filterSubject));
}
/**
* Sets the filter subjects of the OrderedConsumerConfiguration.
* @param filterSubject the filter subject
* @return Builder
*/
public OrderedConsumerConfiguration filterSubjects(String... filterSubject) {
return filterSubjects(Arrays.asList(filterSubject));
}
/**
* Sets the filter subject of the OrderedConsumerConfiguration.
* @param filterSubjects one or more filter subjects
* @return Builder
*/
public OrderedConsumerConfiguration filterSubjects(List filterSubjects) {
this.filterSubjects.clear();
for (String fs : filterSubjects) {
String fsean = emptyAsNull(fs);
if (fsean != null) {
this.filterSubjects.add(fsean);
}
}
if (this.filterSubjects.isEmpty()) {
this.filterSubjects.add(GREATER_THAN);
}
return this;
}
/**
* Sets the delivery policy of the OrderedConsumerConfiguration.
* @param deliverPolicy the delivery policy.
* @return Builder
*/
public OrderedConsumerConfiguration deliverPolicy(DeliverPolicy deliverPolicy) {
this.deliverPolicy = deliverPolicy;
return this;
}
/**
* Sets the start sequence of the OrderedConsumerConfiguration.
* @param startSequence the start sequence
* @return Builder
*/
public OrderedConsumerConfiguration startSequence(long startSequence) {
this.startSequence = startSequence < 1 ? ConsumerConfiguration.LONG_UNSET : startSequence;
return this;
}
/**
* Sets the start time of the OrderedConsumerConfiguration.
* @param startTime the start time
* @return Builder
*/
public OrderedConsumerConfiguration startTime(ZonedDateTime startTime) {
this.startTime = startTime;
return this;
}
/**
* Sets the replay policy of the OrderedConsumerConfiguration.
* @param replayPolicy the replay policy.
* @return Builder
*/
public OrderedConsumerConfiguration replayPolicy(ReplayPolicy replayPolicy) {
this.replayPolicy = replayPolicy;
return this;
}
/**
* set the headers only flag saying to deliver only the headers of
* messages in the stream and not the bodies
* @param headersOnly the flag
* @return Builder
*/
public OrderedConsumerConfiguration headersOnly(Boolean headersOnly) {
this.headersOnly = headersOnly != null && headersOnly ? true : null;
return this;
}
public String getFilterSubject() {
return filterSubjects == null || filterSubjects.size() != 1 ? null : filterSubjects.get(0);
}
public List getFilterSubjects() {
return filterSubjects;
}
public boolean hasMultipleFilterSubjects() {
return filterSubjects != null && filterSubjects.size() > 1;
}
public DeliverPolicy getDeliverPolicy() {
return deliverPolicy;
}
public Long getStartSequence() {
return startSequence;
}
public ZonedDateTime getStartTime() {
return startTime;
}
public ReplayPolicy getReplayPolicy() {
return replayPolicy;
}
public Boolean getHeadersOnly() {
return headersOnly;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy