All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.system.stats.mongo.AutoValue_ServerStatus_Connections Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.graylog2.system.stats.mongo;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.Long;
import javax.annotation.Nullable;

final class AutoValue_ServerStatus_Connections extends $AutoValue_ServerStatus_Connections {
  AutoValue_ServerStatus_Connections(int current, int available, Long totalCreated) {
    super(current, available, totalCreated);
  }

  @JsonIgnore
  public final int getCurrent() {
    return current();
  }

  @JsonIgnore
  public final int getAvailable() {
    return available();
  }

  @JsonIgnore
  @Nullable
  public final Long getTotalCreated() {
    return totalCreated();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy