io.nats.client.api.AccountTier 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 2020 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.JsonValue;
import static io.nats.client.support.ApiConstants.*;
import static io.nats.client.support.JsonValueUtils.readInteger;
import static io.nats.client.support.JsonValueUtils.readObject;
/**
* Represents the JetStream Account Tier
*/
public class AccountTier {
private final int memory;
private final int storage;
private final int streams;
private final int consumers;
private final AccountLimits limits;
AccountTier(JsonValue vAccountTier) {
memory = readInteger(vAccountTier, MEMORY, 0);
storage = readInteger(vAccountTier, STORAGE, 0);
streams = readInteger(vAccountTier, STREAMS, 0);
consumers = readInteger(vAccountTier, CONSUMERS, 0);
limits = new AccountLimits(readObject(vAccountTier, LIMITS));
}
/**
* Memory Storage being used for Stream Message storage in this tier.
* @return the storage in bytes
*/
public int getMemory() {
return memory;
}
/**
* File Storage being used for Stream Message storage in this tier.
* @return the storage in bytes
*/
public int getStorage() {
return storage;
}
/**
* Number of active streams in this tier.
* @return the number of streams
*/
public int getStreams() {
return streams;
}
/**
* Number of active consumers in this tier.
* @return the number of consumers
*/
public int getConsumers() {
return consumers;
}
/**
* The limits of this tier.
* @return the limits object
*/
public AccountLimits getLimits() {
return limits;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy