Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 594 Bytes

README.md

File metadata and controls

28 lines (16 loc) · 594 Bytes

Commons Timeuuid

An timeuuid library in Scala base on http://www.ietf.org/rfc/rfc4122.txt which generates version 1 UUIDs.

Example Usage

Generates a new unique time based UUID

val uuid = Timeuuid()

Convert time UUID to unix timestamp

import com.gilt.timeuuid._

val uuid = Timeuuid()
val timestamp: Long = uuid

Convert time UUID to unix date

import com.gilt.timeuuid._

val uuid = Timeuuid()
val date: Date = uuid

License

Copyright 2014 Gilt Groupe, Inc.

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0