module Qpid::Proton::Util::UUID

Public Instance Methods

generate_uuid() click to toggle source
# File lib/util/uuid.rb, line 24
def generate_uuid
  # generate a UUID based on what APIs are available with the current
  # version of Ruby
  SecureRandom.uuid
end