Class StatusResponse
Inheritance
StatusResponse
Assembly: etcd.v3.dll
Syntax
public sealed class StatusResponse : IMessage<StatusResponse>, IEquatable<StatusResponse>, IDeepCloneable<StatusResponse>, IBufferMessage, IMessage
Constructors
View Source
StatusResponse()
Declaration
View Source
StatusResponse(StatusResponse)
Declaration
public StatusResponse(StatusResponse other)
Parameters
Fields
View Source
DbSizeFieldNumber
Declaration
public const int DbSizeFieldNumber = 3
Field Value
View Source
DbSizeInUseFieldNumber
Declaration
public const int DbSizeInUseFieldNumber = 9
Field Value
View Source
DbSizeQuotaFieldNumber
Declaration
public const int DbSizeQuotaFieldNumber = 12
Field Value
View Source
DowngradeInfoFieldNumber
Declaration
public const int DowngradeInfoFieldNumber = 13
Field Value
View Source
ErrorsFieldNumber
Declaration
public const int ErrorsFieldNumber = 8
Field Value
View Source
Declaration
public const int HeaderFieldNumber = 1
Field Value
View Source
IsLearnerFieldNumber
Declaration
public const int IsLearnerFieldNumber = 10
Field Value
View Source
LeaderFieldNumber
Declaration
public const int LeaderFieldNumber = 4
Field Value
View Source
RaftAppliedIndexFieldNumber
Declaration
public const int RaftAppliedIndexFieldNumber = 7
Field Value
View Source
RaftIndexFieldNumber
Declaration
public const int RaftIndexFieldNumber = 5
Field Value
View Source
RaftTermFieldNumber
Declaration
public const int RaftTermFieldNumber = 6
Field Value
View Source
StorageVersionFieldNumber
Declaration
public const int StorageVersionFieldNumber = 11
Field Value
View Source
VersionFieldNumber
Declaration
public const int VersionFieldNumber = 2
Field Value
Properties
View Source
DbSize
Declaration
public long DbSize { get; set; }
Property Value
View Source
DbSizeInUse
Declaration
public long DbSizeInUse { get; set; }
Property Value
View Source
DbSizeQuota
Declaration
public long DbSizeQuota { get; set; }
Property Value
View Source
Descriptor
Declaration
public static MessageDescriptor Descriptor { get; }
Property Value
View Source
DowngradeInfo
Declaration
public DowngradeInfo DowngradeInfo { get; set; }
Property Value
View Source
Errors
Declaration
public RepeatedField<string> Errors { get; }
Property Value
View Source
Declaration
public ResponseHeader Header { get; set; }
Property Value
View Source
IsLearner
Declaration
public bool IsLearner { get; set; }
Property Value
View Source
Leader
Declaration
public ulong Leader { get; set; }
Property Value
View Source
Parser
Declaration
public static MessageParser<StatusResponse> Parser { get; }
Property Value
View Source
RaftAppliedIndex
Declaration
public ulong RaftAppliedIndex { get; set; }
Property Value
View Source
RaftIndex
Declaration
public ulong RaftIndex { get; set; }
Property Value
View Source
RaftTerm
Declaration
public ulong RaftTerm { get; set; }
Property Value
View Source
StorageVersion
Declaration
public string StorageVersion { get; set; }
Property Value
View Source
Version
Declaration
public string Version { get; set; }
Property Value
Methods
View Source
CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
Declaration
public int CalculateSize()
Returns
Type |
Description |
int |
The number of bytes required to write this message
to a coded output stream.
|
View Source
Clone()
Creates a deep clone of this object.
Declaration
public StatusResponse Clone()
Returns
View Source
Equals(StatusResponse)
Declaration
public bool Equals(StatusResponse other)
Parameters
Returns
View Source
Equals(object)
Declaration
public override bool Equals(object other)
Parameters
Type |
Name |
Description |
object |
other |
|
Returns
Overrides
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
MergeFrom(StatusResponse)
Merges the given message into this one.
Declaration
public void MergeFrom(StatusResponse other)
Parameters
View Source
Merges the data from the specified coded input stream with the current message.
Declaration
public void MergeFrom(CodedInputStream input)
Parameters
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
View Source
WriteTo(CodedOutputStream)
Writes the data to the given coded output stream.
Declaration
public void WriteTo(CodedOutputStream output)
Parameters
Type |
Name |
Description |
CodedOutputStream |
output |
Coded output stream to write the data to. Must not be null.
|
Implements