Documentation ¶
Index ¶
- Constants
- func DurationTo8601Seconds(duration time.Duration) string
- func DurationToStringPtr(duration *time.Duration) *string
- func ISO8601StringToDuration(durationStr *string) (*time.Duration, error)
- func Int32ToPtr(val *int32) *int32
- func Retry(ctx context.Context, eventName log.Event, operation string, ...) error
- func WaitForGroupOrContext(ctx context.Context, wg *sync.WaitGroup) error
- type RetryFnArgs
Constants ¶
View Source
const EventRetry = "azsb.Retry"
EventRetry is the name for retry events
View Source
const MaxTimeDuration = time.Duration(1<<63 - 1)
straight from 'time.go'
Variables ¶
This section is empty.
Functions ¶
func DurationTo8601Seconds ¶ added in v0.2.0
DurationTo8601Seconds takes a duration and returns a string period of whole seconds (int cast of float)
func DurationToStringPtr ¶ added in v0.2.0
DurationToStringPtr converts a time.Duration to an ISO8601 duration as a string pointer.
func ISO8601StringToDuration ¶ added in v0.2.0
ISO8601StringToDuration converts an ISO8601 string to a Go time.Duration
func Int32ToPtr ¶ added in v0.2.0
func Retry ¶ added in v0.3.4
func Retry(ctx context.Context, eventName log.Event, operation string, fn func(ctx context.Context, args *RetryFnArgs) error, isFatalFn func(err error) bool, o exported.RetryOptions) error
Retry runs a standard retry loop. It executes your passed in fn as the body of the loop. It returns if it exceeds the number of configured retry options or if 'isFatal' returns true.
Types ¶
type RetryFnArgs ¶ added in v0.3.4
type RetryFnArgs struct { // I is the iteration of the retry "loop" and starts at 0. // The 0th iteration is the first call, and doesn't count as a retry. // The last try will equal RetryOptions.MaxRetries I int32 // LastErr is the returned error from the previous loop. // If you have potentially expensive LastErr error // contains filtered or unexported fields }
func (*RetryFnArgs) ResetAttempts ¶ added in v0.3.4
func (rf *RetryFnArgs) ResetAttempts()
ResetAttempts resets all Retry() attempts, starting back at iteration 0.
Click to show internal directories.
Click to hide internal directories.