UUID Constructor (Int64, Byte, Int32, Int32) |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Build a UUID from its constituent members (advanced
constructor).
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic UUID(
long datetime,
byte[] ip,
int port,
int counter
)
Parameters
- datetime
- Type: SystemInt64
The creation date/time millis portion of the UUID.
- ip
- Type: SystemByte
The IPAddress portion of the UUID.
- port
- Type: SystemInt32
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: SystemInt32
The counter portion of the UUID.
Remarks
It is guaranteed that a generated UUID will never equal a
built UUID.
See Also