Source File
clock.go
Belonging Package
go.pact.im/x/clock/mockclock
package mockclock
import (
)
// Clock is a union of all interfaces implemented by a full-featured clock
// implementation. It is satisfied by clock.Clock that provides shims for
// missing functionality.
//
// It is an input for mock types generator and must not be used outside of this
// package.
type Clock interface {
clock.Scheduler
clock.NowScheduler
clock.TimerScheduler
clock.TickerScheduler
private()
}
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)