time

package
v0.0.41 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 8, 2021 License: MIT Imports: 4 Imported by: 1

Documentation

Index

Constants

View Source
const (
	DefaultInitialInterval     = 500 * time.Millisecond
	DefaultRandomizationFactor = 0.5
	// The default multiplier value used for increment current interval
	DefaultMultiplier     = 1.5
	DefaultMaxInterval    = 60 * time.Second
	DefaultMaxElapsedTime = 15 * time.Minute
)

Default values for ExponentialBackOff.

View Source
const (
	DayFormat             = "20060102"
	TimeMillFormat        = "20060102150405.000"
	ShortTimeFormat       = "20060102150405"
	ShortDashTimeFormat   = "2006-01-02-15:04:05"
	DefaultTimeFormat     = "2006-01-02 15:04:05"
	DefaultTimeMillFormat = "2006-01-02 15:04:05.000"
)

Variables

This section is empty.

Functions

func BeginningOfDay added in v0.0.7

func BeginningOfDay(days int) time.Time

func BeginningOfDayString added in v0.0.7

func BeginningOfDayString(days int, layout string) string

func EndOfDay added in v0.0.7

func EndOfDay(days int) time.Time

func EndOfDayString added in v0.0.7

func EndOfDayString(days int, layout string) string

func Now added in v0.0.12

func Now() time.Time

func NowString added in v0.0.12

func NowString(layout string) string

func TruncateToUTC added in v0.0.27

func TruncateToUTC(t time.Time, d time.Duration) time.Time

Truncate only happens in UTC semantics, apparently. observed values for truncating given time with 86400 secs:

before truncation: 2018/06/01 03:54:54 2018-06-01T03:18:00+09:00 after truncation: 2018/06/01 03:54:54 2018-05-31T09:00:00+09:00

This is really annoying when we want to truncate in local time so we hack: we take the apparent local time in the local zone, and pretend that it's in UTC. do our math, and put it back to the local zone

func TruncateToUTCString added in v0.0.27

func TruncateToUTCString(t time.Time, d time.Duration, layout string) string

Types

type EmptyExponentialBackOffOption added in v0.0.6

type EmptyExponentialBackOffOption struct{}

EmptyExponentialBackOffUrlOption does not alter the ExponentialBackOffuration. It can be embedded in another structure to build custom options.

This API is EXPERIMENTAL.

type ExponentialBackOff added in v0.0.6

type ExponentialBackOff struct {
	// contains filtered or unexported fields
}

func NewExponentialBackOff added in v0.0.6

func NewExponentialBackOff(opts ...ExponentialBackOffOption) *ExponentialBackOff

func (*ExponentialBackOff) ApplyOptions added in v0.0.6

func (o *ExponentialBackOff) ApplyOptions(options ...ExponentialBackOffOption) *ExponentialBackOff

func (*ExponentialBackOff) GetCurrentInterval added in v0.0.6

func (b *ExponentialBackOff) GetCurrentInterval() time.Duration

func (*ExponentialBackOff) GetElapsedTime added in v0.0.6

func (b *ExponentialBackOff) GetElapsedTime() time.Duration

func (*ExponentialBackOff) NextBackOff added in v0.0.6

func (b *ExponentialBackOff) NextBackOff() (time.Duration, bool)

false : have gone over the maximu elapsed time true : return remaining time

func (*ExponentialBackOff) Reset added in v0.0.6

func (b *ExponentialBackOff) Reset()

type ExponentialBackOffOption added in v0.0.6

type ExponentialBackOffOption interface {
	// contains filtered or unexported methods
}

A ExponentialBackOffOption sets options.

func WithExponentialBackOffOptionInitialInterval added in v0.0.6

func WithExponentialBackOffOptionInitialInterval(initialInterval time.Duration) ExponentialBackOffOption

func WithExponentialBackOffOptionMaxElapsedTime added in v0.0.6

func WithExponentialBackOffOptionMaxElapsedTime(maxElapsedTime time.Duration) ExponentialBackOffOption

func WithExponentialBackOffOptionMaxInterval added in v0.0.6

func WithExponentialBackOffOptionMaxInterval(maxInterval time.Duration) ExponentialBackOffOption

func WithExponentialBackOffOptionMultiplier added in v0.0.6

func WithExponentialBackOffOptionMultiplier(multiplier float64) ExponentialBackOffOption

func WithExponentialBackOffOptionRandomizationFactor added in v0.0.6

func WithExponentialBackOffOptionRandomizationFactor(randomizationFactor float64) ExponentialBackOffOption

type ExponentialBackOffOptionFunc added in v0.0.6

type ExponentialBackOffOptionFunc func(*ExponentialBackOff)

ExponentialBackOffOptionFunc wraps a function that modifies ExponentialBackOff into an implementation of the ExponentialBackOffOption interface.

type TimeCounter

type TimeCounter struct {
	// contains filtered or unexported fields
}

func New

func New(effect bool) *TimeCounter

func (*TimeCounter) Elapse added in v0.0.36

func (t *TimeCounter) Elapse() time.Duration

func (*TimeCounter) Reset

func (t *TimeCounter) Reset()

func (*TimeCounter) String

func (t *TimeCounter) String() string

func (*TimeCounter) Summary

func (t *TimeCounter) Summary(f func(idx int, msg string, cost time.Duration, at time.Time))

func (*TimeCounter) Tick

func (t *TimeCounter) Tick(msg string)

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL