This commit is contained in:
Stephen McQuay 2013-05-14 21:01:26 -07:00
parent d09e496387
commit f3794ba244
1 changed files with 14 additions and 14 deletions

View File

@ -26,20 +26,20 @@ func fakeSearch(kind string) Search {
}
func Google(query string) (results []Result) {
c := make(chan Result)
go func(){c <- Web(query)}()
go func(){c <- Image(query)}()
go func(){c <- Video(query)}()
c := make(chan Result)
go func() { c <- Web(query) }()
go func() { c <- Image(query) }()
go func() { c <- Video(query) }()
timeout := time.After(80 * time.Millisecond)
for i :=0; i < 3; i++ {
select{
case result := <- c:
results = append(results, result)
case <- timeout:
fmt.Println("timed out!!")
return
}
}
timeout := time.After(80 * time.Millisecond)
for i := 0; i < 3; i++ {
select {
case result := <-c:
results = append(results, result)
case <-timeout:
fmt.Println("timed out!!")
return
}
}
return
}