Class Uuid
Represents a UUID
Inherited Members
Namespace: Confluent.Kafka
Assembly: Confluent.Kafka.dll
Syntax
public class Uuid
Constructors
Uuid(long, long)
Initializes a new instance of the Uuid class with the specified Most and Least significant bits.
Declaration
public Uuid(long mostSignificantBits, long leastSignificantBits)
Parameters
Type | Name | Description |
---|---|---|
long | mostSignificantBits | Most significant 64 bits of the 128 bits UUID. |
long | leastSignificantBits | Least significant 64 bits of the 128 bits UUID. |
Properties
LeastSignificantBits
Most significant 64 bits of the 128 bits UUID.
Declaration
public Offset LeastSignificantBits { get; }
Property Value
Type | Description |
---|---|
Offset |
MostSignificantBits
Most significant 64 bits of the 128 bits UUID.
Declaration
public Offset MostSignificantBits { get; }
Property Value
Type | Description |
---|---|
Offset |
Methods
ToString()
Returns a string representation of the Uuid object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A string representation of the Uuid object. |