Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1649)

Delta Between Two Patch Sets: doc/codewalk/urlpoll.go

Issue 8896045: code review 8896045: all: fix typos (Closed)
Left Patch Set: Created 11 years, 11 months ago
Right Patch Set: diff -r e920ea81e2fa https://code.google.com/p/go/ Created 11 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « doc/articles/image_package.html ('k') | doc/devel/weekly.html » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2010 The Go Authors. All rights reserved. 1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package main 5 package main
6 6
7 import ( 7 import (
8 "log" 8 "log"
9 "net/http" 9 "net/http"
10 "time" 10 "time"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 resp, err := http.Head(r.url) 69 resp, err := http.Head(r.url)
70 if err != nil { 70 if err != nil {
71 log.Println("Error", r.url, err) 71 log.Println("Error", r.url, err)
72 r.errCount++ 72 r.errCount++
73 return err.Error() 73 return err.Error()
74 } 74 }
75 r.errCount = 0 75 r.errCount = 0
76 return resp.Status 76 return resp.Status
77 } 77 }
78 78
79 // Sleep sleeps for an appropriate interval (dependant on error state) 79 // Sleep sleeps for an appropriate interval (dependent on error state)
80 // before sending the Resource to done. 80 // before sending the Resource to done.
81 func (r *Resource) Sleep(done chan<- *Resource) { 81 func (r *Resource) Sleep(done chan<- *Resource) {
82 time.Sleep(pollInterval + errTimeout*time.Duration(r.errCount)) 82 time.Sleep(pollInterval + errTimeout*time.Duration(r.errCount))
83 done <- r 83 done <- r
84 } 84 }
85 85
86 func Poller(in <-chan *Resource, out chan<- *Resource, status chan<- State) { 86 func Poller(in <-chan *Resource, out chan<- *Resource, status chan<- State) {
87 for r := range in { 87 for r := range in {
88 s := r.Poll() 88 s := r.Poll()
89 status <- State{r.url, s} 89 status <- State{r.url, s}
(...skipping 17 matching lines...) Expand all
107 go func() { 107 go func() {
108 for _, url := range urls { 108 for _, url := range urls {
109 pending <- &Resource{url: url} 109 pending <- &Resource{url: url}
110 } 110 }
111 }() 111 }()
112 112
113 for r := range complete { 113 for r := range complete {
114 go r.Sleep(pending) 114 go r.Sleep(pending)
115 } 115 }
116 } 116 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b