getTimeUuid function

String getTimeUuid()

Implementation

String getTimeUuid(
    )
{
    return
        getUuidFromHexadecimalText(
            getHexadecimalTextFromInteger(
                ( getCurrentMillisecondCount() + 12219292800000 ) * 10000
                )
            + getRandomHexadecimalText( 16 )
            );
}