Oracle® Coherence .NET API Reference Release 3.6.1
E18812-01

Build a UUID from its constituent members (advanced constructor).

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 3.6.1.0 (3.6.1.0)

Syntax

C#
public UUID(
	long datetime,
	IPAddress address,
	int port,
	int counter
)

Parameters

datetime
Type: System..::.Int64
The creation date/time millis portion of the UUID.
address
Type: System.Net..::.IPAddress
The IPAddress portion of the UUID.
port
Type: System..::.Int32
The port number portion of the UUID; a port number is 16 bits, but up to 28 bits of data from this value will be maintained by the UUID.
counter
Type: System..::.Int32
The counter portion of the UUID.

Remarks

It is guaranteed that a generated UUID will never equal a built UUID.

See Also