io.nats.client.api.Placement 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.
// Copyright 2022 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.JsonSerializable;
import io.nats.client.support.JsonValue;
import java.util.Arrays;
import java.util.List;
import static io.nats.client.support.ApiConstants.CLUSTER;
import static io.nats.client.support.ApiConstants.TAGS;
import static io.nats.client.support.JsonUtils.*;
import static io.nats.client.support.JsonValueUtils.readOptionalStringList;
import static io.nats.client.support.JsonValueUtils.readStringEmptyAsNull;
/**
* Placement directives to consider when placing replicas of a stream
*/
public class Placement implements JsonSerializable {
private final String cluster;
private final List tags;
static Placement optionalInstance(JsonValue vPlacement) {
return vPlacement == null ? null : new Placement(vPlacement);
}
Placement(JsonValue vPlacement) {
this.cluster = readStringEmptyAsNull(vPlacement, CLUSTER);
this.tags = readOptionalStringList(vPlacement, TAGS);
}
/**
* Construct a placement object
* @param cluster the cluster name
* @param tags the list of tags, may be null
*/
public Placement(String cluster, List tags) {
this.cluster = cluster == null || cluster.isEmpty() ? null : cluster;
this.tags = tags == null || tags.isEmpty() ? null : tags;
}
public boolean hasData() {
return cluster != null || tags != null;
}
/**
* The desired cluster name to place the stream.
* @return The cluster name
*/
public String getCluster() {
return cluster;
}
/**
* Tags required on servers hosting this stream
* @return the list of tags
*/
public List getTags() {
return tags;
}
@Override
public String toString() {
return "Placement{" +
"cluster='" + cluster + '\'' +
", tags=" + tags +
'}';
}
public String toJson() {
StringBuilder sb = beginJson();
addField(sb, CLUSTER, cluster);
addStrings(sb, TAGS, tags);
return endJson(sb).toString();
}
/**
* Creates a builder for a placements object.
* @return the builder.
*/
public static Builder builder() {
return new Builder();
}
/**
* Placement can be created using a Builder.
*/
public static class Builder {
private String cluster;
private List tags;
/**
* Set the cluster string.
* @param cluster the cluster
* @return the builder
*/
public Builder cluster(String cluster) {
this.cluster = cluster;
return this;
}
/**
* Set the tags
* @param tags the list of tags
* @return the builder
*/
public Builder tags(String... tags) {
this.tags = Arrays.asList(tags);
return this;
}
/**
* Set the tags
* @param tags the list of tags
* @return the builder
*/
public Builder tags(List tags) {
this.tags = tags;
return this;
}
/**
* Build a Placement object
* @return the Placement
*/
public Placement build() {
return new Placement(cluster, tags);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy