Documentation
¶
Overview ¶
Package clocks provides the Clock interface and a default implementations: the defaultClock implementation (returned by DefaultClock())
defaultClock should always be used within production, as it is a trivial wrapper around the real clock-derived functions in the time package of the Go standard library.
In the fake subpackage there is a fake.Clock (created by fake.NewClock()) fake.Clock is present for use in tests, with some helpers for useful synchronization, such as AwaitSleepers() which lets a test goroutine block until some number of other goroutines are sleeping. See the documentation on the individual methods of fake.Clock for more specific documentation.
The offset subpackage contains an offset.Clock type which simply adds a constant offset to any interactions with an absolute time. This type is most useful for simulating clock-skew/unsynchronization in combination with the fake-clock.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Clock ¶
type Clock interface { Now() time.Time Until(time.Time) time.Duration // SleepUntil blocks until either ctx expires or until arrives. // Return value is false if context-cancellation/expiry prompted an // early return. SleepUntil(ctx context.Context, until time.Time) bool // SleepFor is the relative-time equivalent of SleepUntil. In the // default implementation, this is the lower-level method, but other // implementations may disagree. SleepFor(ctx context.Context, dur time.Duration) bool // AfterFunc is a time-relative primitive, equivalent to time.AfterFunc. // (in the default clock, it *is* delegated directly to time.AfterFunc) // The callback function f will be executed after the interval d has // elapsed, unless the returned timer's Stop() method is called first. AfterFunc(d time.Duration, f func()) StopTimer // ContextWithDeadline behaves like context.WithDeadline, but it uses the // clock to determine the when the deadline has expired. ContextWithDeadline(ctx context.Context, t time.Time) (context.Context, context.CancelFunc) // ContextWithDeadlineCause behaves like context.WithDeadlineCause, but it // uses the clock to determine the when the deadline has expired. Cause is // ignored in Go 1.20 and earlier. ContextWithDeadlineCause(ctx context.Context, t time.Time, cause error) (context.Context, context.CancelFunc) // ContextWithTimeout behaves like context.WithTimeout, but it uses the // clock to determine the when the timeout has elapsed. ContextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc) // ContextWithTimeoutCause behaves like context.WithTimeoutCause, but it // uses the clock to determine the when the timeout has elapsed. Cause is // ignored in Go 1.20 and earlier. ContextWithTimeoutCause(ctx context.Context, d time.Duration, cause error) (context.Context, context.CancelFunc) // NewTimer returns a Timer implementation which will fire after at // least the specified duration [d]. The Ch() method returns a channel, // and should be called inline with the receive or select case. // // Timers are most useful in select/case blocks. For simple cases, // SleepFor should be preferred. // // Stop() is inherently racy. Be wary of the return value. NewTimer(d time.Duration) Timer }
Clock is generally only used for testing, but could be used for userspace clock-synchronization as well.
func DefaultClock ¶
func DefaultClock() Clock
DefaultClock returns a clock that minimally wraps the `time` package
type StopTimer ¶ added in v1.1.0
type StopTimer interface { // Stop attempts to prevent a timer from firing, returning true if it // succeeds in preventing the timer from firing, and false if it // already fired. Stop() bool }
StopTimer exposes a `Stop()` method for an equivalent object to time.Timer (in the defaultClock case, it may be an actual time.Timer).
type Timer ¶ added in v1.3.0
type Timer interface { StopTimer // Ch returns the channel for the timer // For the fake clock's tracking to work, one must always dereference // the channel returned by this method directly, as it relies on a // finalizer to figure out when a listening goroutine woke up. Ch() *<-chan time.Time }
Timer exposes methods for an equivalent object to time.Timer (in the defaultClock case, it may be an actual time.Timer)