Skip to content

Instantly share code, notes, and snippets.

@EwanDawson
Created July 18, 2017 20:59
Show Gist options
  • Save EwanDawson/ca0f82028fed9e0ed40686ddf46692f7 to your computer and use it in GitHub Desktop.
Save EwanDawson/ca0f82028fed9e0ed40686ddf46692f7 to your computer and use it in GitHub Desktop.
Convert a date into the number of nanoseconds elapsed from January 1, 1970 UTC to that date
import java.time.Instant
def instant = Instant.parse(payload[0] as String)
instant.epochSecond * 1e9 + instant.nano
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment