Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Build a UUID from its constituent members (advanced constructor).

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

Syntax

C#
public UUID(
	long datetime,
	byte[] ip,
	int port,
	int counter
)

Parameters

datetime
Type: System..::..Int64
The creation date/time millis portion of the UUID.
ip
Type: array<System..::..Byte>[]()[][]
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