Fix select indents.
This commit is contained in:
parent
66900d08e3
commit
6d352d61eb
1 changed files with 13 additions and 13 deletions
|
@ -329,14 +329,14 @@
|
||||||
* Select
|
* Select
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case <-ch1:
|
case <-ch1:
|
||||||
// ...
|
// ...
|
||||||
case x := <-ch2:
|
case x := <-ch2:
|
||||||
// ...use x...
|
// ...use x...
|
||||||
case ch3 <- y:
|
case ch3 <- y:
|
||||||
// ...
|
// ...
|
||||||
default:
|
default:
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
|
||||||
- select блокируется, пока ни один из `case`-ов не может выполниться.
|
- select блокируется, пока ни один из `case`-ов не может выполниться.
|
||||||
|
@ -347,11 +347,11 @@
|
||||||
// ...create abort channel...
|
// ...create abort channel...
|
||||||
fmt.Println("Commencing countdown. Press return to abort.")
|
fmt.Println("Commencing countdown. Press return to abort.")
|
||||||
select {
|
select {
|
||||||
case <-time.After(10 * time.Second):
|
case <-time.After(10 * time.Second):
|
||||||
// Do nothing.
|
// Do nothing.
|
||||||
case <-abort:
|
case <-abort:
|
||||||
fmt.Println("Launch aborted!")
|
fmt.Println("Launch aborted!")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
launch()
|
launch()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue