-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path32_timers.go
More file actions
32 lines (28 loc) · 843 Bytes
/
Copy path32_timers.go
File metadata and controls
32 lines (28 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package gobyexample
import (
"fmt"
"time"
)
// TimersDemo - demonstrates using Go's built-in timers
func TimersDemo() {
// Timers represent a single event in the future. You tell the timer
// how long you want to wait, and it provides a channel that will be
// notified at that time. This timer will wait 2 seconds.
timer1 := time.NewTimer(2 * time.Second)
// Block on the timer's channel C until it sends a value indicating
// that the timer expired.
<-timer1.C
fmt.Println("Timer 1 expired")
// If you just wanted to wait, you could have used `time.Sleep`.
// One reason a timer may be useful is that you can cancel the timer
// before it expires.
timer2 := time.NewTimer(time.Second)
go func() {
<-timer2.C
fmt.Println("Timer 2 expired")
}()
stop2 := timer2.Stop()
if stop2 {
fmt.Println("Timer 2 stopped")
}
}