Package org.opensearch.index.seqno
Class RetentionLeaseStats
java.lang.Object
org.opensearch.index.seqno.RetentionLeaseStats
- All Implemented Interfaces:
org.opensearch.core.common.io.stream.Writeable
,org.opensearch.core.xcontent.ToXContent
,org.opensearch.core.xcontent.ToXContentFragment
@PublicApi(since="1.0.0")
public final class RetentionLeaseStats
extends Object
implements org.opensearch.core.xcontent.ToXContentFragment, org.opensearch.core.common.io.stream.Writeable
Represents retention lease stats.
- Opensearch.api:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.opensearch.core.xcontent.ToXContent
org.opensearch.core.xcontent.ToXContent.DelegatingMapParams, org.opensearch.core.xcontent.ToXContent.MapParams, org.opensearch.core.xcontent.ToXContent.Params
Nested classes/interfaces inherited from interface org.opensearch.core.common.io.stream.Writeable
org.opensearch.core.common.io.stream.Writeable.Reader<V>, org.opensearch.core.common.io.stream.Writeable.WriteableRegistry, org.opensearch.core.common.io.stream.Writeable.Writer<V>
-
Field Summary
Fields inherited from interface org.opensearch.core.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorsConstructorDescriptionRetentionLeaseStats
(org.opensearch.core.common.io.stream.StreamInput in) Constructs a new retention lease stats object from a stream.RetentionLeaseStats
(RetentionLeases retentionLeases) Constructs a new retention lease stats object from the specified retention lease collection. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
hashCode()
The underlying retention lease collection backing this stats object.org.opensearch.core.xcontent.XContentBuilder
toXContent
(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) Converts the retention lease stats toXContent
using the specified builder and pararms.void
writeTo
(org.opensearch.core.common.io.stream.StreamOutput out) Writes a retention lease stats object to a stream in a manner suitable for later reconstruction viaRetentionLeaseStats(StreamInput)
(StreamInput)}.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.opensearch.core.xcontent.ToXContentFragment
isFragment
-
Constructor Details
-
RetentionLeaseStats
Constructs a new retention lease stats object from the specified retention lease collection.- Parameters:
retentionLeases
- the retention lease collection
-
RetentionLeaseStats
Constructs a new retention lease stats object from a stream. The retention lease stats should have been written viawriteTo(StreamOutput)
.- Parameters:
in
- the stream to construct the retention lease stats from- Throws:
IOException
- if an I/O exception occurs reading from the stream
-
-
Method Details
-
retentionLeases
The underlying retention lease collection backing this stats object.- Returns:
- the retention lease collection
-
writeTo
Writes a retention lease stats object to a stream in a manner suitable for later reconstruction viaRetentionLeaseStats(StreamInput)
(StreamInput)}.- Specified by:
writeTo
in interfaceorg.opensearch.core.common.io.stream.Writeable
- Parameters:
out
- the stream to write the retention lease stats to- Throws:
IOException
- if an I/O exception occurs writing to the stream
-
toXContent
public org.opensearch.core.xcontent.XContentBuilder toXContent(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) throws IOException Converts the retention lease stats toXContent
using the specified builder and pararms.- Specified by:
toXContent
in interfaceorg.opensearch.core.xcontent.ToXContent
- Parameters:
builder
- the builderparams
- the params- Returns:
- the builder that this retention lease collection was converted to
XContent
into - Throws:
IOException
- if an I/O exception occurs writing to the builder
-
equals
-
hashCode
public int hashCode()
-