Skip to content
Snippets Groups Projects
Select Git revision
  • b6242b634e7b238ee7c71c41ecf11ec0e409ea54
  • master default protected
  • 0.5.9
  • 0.5.8
  • 0.5.7
  • 0.5.6
  • 0.5.5
  • 0.5.4
  • 0.5.3
  • 0.5.2
  • 0.5.1
  • 0.5.0
  • 0.4.17
  • 0.4.16
  • 0.4.15
  • 0.4.14
  • 0.4.13
  • 0.4.12
  • 0.4.11
  • 0.4.10
  • 0.4.9
  • 0.4.8
22 results

treefmt.toml

Blame
    • Volker Schukai's avatar
      562eff45
      chore: task · 562eff45
      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
      Verified
      562eff45
      History
      chore: task
      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
    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
    }