Select Git revision
treefmt.toml
-
Volker Schukai authored
chore: Update vendorHash to null chore: Update vendorHash to null chore: update go chore: Update vendorHash to null chore: update chore: update chore: UPdate chore: Update vendorHash to null chore: update chore: Update vendorHash to sha256-6zNRYYddNcOx6G9wSKGv89CfSCxrG0qpSDfBStwNdks= chore: update x x u x x
Volker Schukai authoredchore: Update vendorHash to null chore: Update vendorHash to null chore: update go chore: Update vendorHash to null chore: update chore: update chore: UPdate chore: Update vendorHash to null chore: update chore: Update vendorHash to sha256-6zNRYYddNcOx6G9wSKGv89CfSCxrG0qpSDfBStwNdks= chore: update x x u x x
job-handler.go 455 B
package jobqueue
type CompletedJobHandler interface {
HandleCompletedJob(job GenericJob) error
}
type DatabaseArchiver struct {
// ...
}
func (d *DatabaseArchiver) HandleCompletedJob(job GenericJob) error {
return nil
}
type FileLogger struct {
}
func (f *FileLogger) HandleCompletedJob(job GenericJob) error {
return nil
}
type MetricsPublisher struct {
}
func (m *MetricsPublisher) HandleCompletedJob(job GenericJob) error {
return nil
}