SDK
SDK Golang v3.x
2

Now #

Returns the current server timestamp, in Epoch-millis format.

Arguments #

Copied to clipboard!
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 #

Copied to clipboard!
ts, err := kuzzle.Server.Now(nil)
if err != nil {
  log.Fatal(err)
} else {
  fmt.Println("Epoch-millis timestamp:", ts)
}