public sealed class RiceDeltaEncoding : IMessage<RiceDeltaEncoding>, IEquatable<RiceDeltaEncoding>, IDeepCloneable<RiceDeltaEncoding>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Web Risk v1 API class RiceDeltaEncoding.
The Rice-Golomb encoded data. Used for sending compressed 4-byte hashes or compressed removal indices.
Implements
IMessageRiceDeltaEncoding, IEquatableRiceDeltaEncoding, IDeepCloneableRiceDeltaEncoding, IBufferMessage, IMessageNamespace
Google.Cloud.WebRisk.V1Assembly
Google.Cloud.WebRisk.V1.dll
Constructors
RiceDeltaEncoding()
public RiceDeltaEncoding()
RiceDeltaEncoding(RiceDeltaEncoding)
public RiceDeltaEncoding(RiceDeltaEncoding other)
Parameter | |
---|---|
Name | Description |
other | RiceDeltaEncoding |
Properties
EncodedData
public ByteString EncodedData { get; set; }
The encoded deltas that are encoded using the Golomb-Rice coder.
Property Value | |
---|---|
Type | Description |
ByteString |
EntryCount
public int EntryCount { get; set; }
The number of entries that are delta encoded in the encoded data. If only a
single integer was encoded, this will be zero and the single value will be
stored in first_value
.
Property Value | |
---|---|
Type | Description |
int |
FirstValue
public long FirstValue { get; set; }
The offset of the first entry in the encoded data, or, if only a single integer was encoded, that single integer's value. If the field is empty or missing, assume zero.
Property Value | |
---|---|
Type | Description |
long |
RiceParameter
public int RiceParameter { get; set; }
The Golomb-Rice parameter, which is a number between 2 and 28. This field
is missing (that is, zero) if num_entries
is zero.
Property Value | |
---|---|
Type | Description |
int |