Go Package time: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 20: Line 20:
import "time"
import "time"
...
...
time.Sleep(100 * time.Millisecond)
var secs int
secs = 10
time.Sleep(time.Duration(secs) * time.Second)
</pre>
</pre>

Revision as of 19:24, 20 April 2016

External

Internal

Overview

  • time.After returns a channel that after the given duration, will send current time on it. This can be used to implement a timeout with select.

time.Sleep()

Sleep pauses the current goroutine for at least the duration d. A negative or zero duration causes Sleep to return immediately:

import "time"
...
var secs int
secs = 10
time.Sleep(time.Duration(secs) * time.Second)