Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FileCleanup ¶
func FileCleanup(pattern string, options ...FileCleanerOption) error
Types ¶
type CompletedConfig ¶ added in v0.0.75
type CompletedConfig struct {
// contains filtered or unexported fields
}
CompletedConfig ...
type Config ¶ added in v0.0.75
type Config struct { Proto disk_.DiskCleaner Validator *validator.Validate // contains filtered or unexported fields }
Config ...
func NewConfig ¶ added in v0.0.75
func NewConfig(options ...ConfigOption) *Config
NewConfig returns a Config struct with the default values
func (*Config) ApplyOptions ¶ added in v0.0.75
func (o *Config) ApplyOptions(options ...ConfigOption) *Config
func (*Config) Complete ¶ added in v0.0.75
func (c *Config) Complete(options ...ConfigOption) CompletedConfig
Complete fills in any fields not set that are required to have valid data and can be derived from other fields. If you're going to `ApplyOptions`, do that first. It's mutating the receiver.
type ConfigOption ¶ added in v0.0.75
type ConfigOption interface {
// contains filtered or unexported methods
}
A ConfigOption sets options.
func WithCleanPostCallBack ¶ added in v0.0.86
func WithCleanPostCallBack(f func(file string, err error)) ConfigOption
func WithDiskUsageCallBack ¶ added in v0.0.86
func WithDiskUsageCallBack(f func(diskPath string, diskUsage float32)) ConfigOption
func WithViper ¶ added in v0.0.75
func WithViper(v *viper.Viper) ConfigOption
type ConfigOptionFunc ¶ added in v0.0.75
type ConfigOptionFunc func(*Config)
ConfigOptionFunc wraps a function that modifies Client into an implementation of the ConfigOption interface.
type EmptyConfigOption ¶ added in v0.0.75
type EmptyConfigOption struct{}
EmptyConfigOption does not alter the configuration. It can be embedded in another structure to build custom options.
This API is EXPERIMENTAL.
type EmptyFileCleanerOption ¶
type EmptyFileCleanerOption struct{}
EmptyFileCleanerOption does not alter the configuration. It can be embedded in another structure to build custom options.
This API is EXPERIMENTAL.
type FileCleaner ¶
type FileCleaner struct {
// contains filtered or unexported fields
}
func (*FileCleaner) ApplyOptions ¶
func (o *FileCleaner) ApplyOptions(options ...FileCleanerOption) *FileCleaner
type FileCleanerOption ¶
type FileCleanerOption interface {
// contains filtered or unexported methods
}
A FileCleanerOption sets options.
func WithMaxAge ¶
func WithMaxAge(maxAge time.Duration) FileCleanerOption
func WithMaxCount ¶
func WithMaxCount(maxCount int64) FileCleanerOption
type FileCleanerOptionFunc ¶
type FileCleanerOptionFunc func(*FileCleaner)
FileCleanerOptionFunc wraps a function that modifies Client into an implementation of the FileCleanerOption interface.
type RotatedFiles ¶ added in v0.0.40
type RotatedFiles []string
func (RotatedFiles) Len ¶ added in v0.0.40
func (f RotatedFiles) Len() int
func (RotatedFiles) Less ¶ added in v0.0.40
func (f RotatedFiles) Less(i, j int) bool
func (RotatedFiles) Swap ¶ added in v0.0.40
func (f RotatedFiles) Swap(i, j int)