ToMicros

Not available in this language yet.
Not available in this language yet.
ToMicros( value )
ToMicros( value )
Not available in this language yet.
Not available in this language yet.
ToMicros( value )
Not available in this language yet.

Description

The ToMicros function converts a value to the number of microseconds since Unix epoch (midnight, January 1, 1970), if possible.

Attempting to convert a value to a number of microseconds which has no numeric representation results in an "invalid argument" error.

Parameters

Argument Type Definition and Requirements

value

Any

The value to attempt to convert to a number of microseconds since Unix epoch.

If you provide a Number, it is interpreted as the number of microseconds since Unix epoch.

Returns

A number representing the number of microseconds since Unix epoch.

Examples

The following query calls ToMicros twice:

  1. To convert 1 second after Unix epoch into microseconds.

  2. To convert the current transaction time into microseconds.

Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
System.out.println(
    client.query(
        Arr(
            ToMicros(Epoch(1, "second")),
            ToMicros(Now())
        )
    ).get());
client.query([
  q.ToMicros(q.Epoch(1, 'second')),
  q.ToMicros(q.Now()),
])
.then((ret) => console.log(ret))
Not available in this language yet.
Not available in this language yet.
println(Await.result(
  client.query(
    Arr(
      ToMicros(Epoch(1, "second")),
      ToMicros(Now())
    )
  ),
  5.seconds
))
Not available in this language yet.
[1000000, 1571845499293943]
[ 1000000, 1571845499293943 ]
[1000000, 1571845499293943]

Was this article helpful?

We're sorry to hear that.
Tell us how we can improve! documentation@fauna.com

Thank you for your feedback!