Now #
Returns the current server timestamp, in Epoch-millis format.
Arguments #
func (s *Server) Now(options types.QueryOptions) (int64, error)
Arguments | Type | Description |
---|---|---|
options | types.QueryOptions | Query options. |
Options #
Additional query options
Option | Type | Description | Default |
---|---|---|---|
Queuable | bool | If true, queues the request during downtime, until connected to Kuzzle again | true |
Return #
Returns current server timestamp as int64
or a KuzzleError
. See how to handle error.
Usage #
ts, err := kuzzle.Server.Now(nil)
if err != nil {
log.Fatal(err)
} else {
fmt.Println("Epoch-millis timestamp:", ts)
}
Edit this page on Github(opens new window)