Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
utils/clock: add clock package #147
Conversation
wallyworld
reviewed
Aug 10, 2015
| + | ||
| +// Alarm returns a channel that will send a value at some point after | ||
| +// the supplied time. | ||
| +func (clock wallClock) After(d time.Duration) <-chan time.Time { |
|
LGTM |
|
$$merge$$ |
|
Status: merge request accepted. Url: http://juju-ci.vapour.ws:8080/job/github-merge-juju-utils |
added a commit
that referenced
this pull request
Aug 10, 2015
jujubot
merged commit 6f48322
into
juju:master
Aug 10, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
axw commentedAug 10, 2015
Add a clock package which contains a Clock
interface, and WallClock var whose type
implements Clock in terms of the wall clock.
(Review request: http://reviews.vapour.ws/r/2327/)