mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-29 00:25:20 +03:00
added iterator example
This commit is contained in:
parent
d1e5d3f1c1
commit
87e8b9e074
@ -1,6 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/davecgh/go-spew/spew"
|
"github.com/davecgh/go-spew/spew"
|
||||||
@ -21,7 +22,44 @@ func dummyFetchUrl(url string) *FetchResult {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func concurrentFetch(urls []string) <-chan *FetchResult {
|
||||||
r := dummyFetchUrl("http://www.google.com")
|
rChan := make(chan *FetchResult, len(urls))
|
||||||
spew.Dump(r)
|
for _, url := range urls {
|
||||||
|
go func(url string) {
|
||||||
|
result := dummyFetchUrl(url)
|
||||||
|
rChan <- result
|
||||||
|
}(url)
|
||||||
|
}
|
||||||
|
return rChan
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
// mock the urls
|
||||||
|
urls := []string{
|
||||||
|
"test1",
|
||||||
|
"test2",
|
||||||
|
"test3",
|
||||||
|
"test4",
|
||||||
|
"test5",
|
||||||
|
"test6",
|
||||||
|
}
|
||||||
|
|
||||||
|
// this is a prefered method
|
||||||
|
chanResults := concurrentFetch(urls)
|
||||||
|
for i := 0; i < len(urls); i++ {
|
||||||
|
select {
|
||||||
|
case c := <-chanResults:
|
||||||
|
spew.Dump(c)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// i := 0
|
||||||
|
// for v := range concurrentFetch(urls) {
|
||||||
|
// spew.Dump(i, v)
|
||||||
|
// i++
|
||||||
|
// if i == len(urls) {
|
||||||
|
// break
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
fmt.Println("All my things are done")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user