github.com/goravel/framework@v1.13.9/contracts/queue/job.go (about) 1 package queue 2 3 type Job interface { 4 // Signature set the unique signature of the job. 5 Signature() string 6 // Handle executes the job. 7 Handle(args ...any) error 8 } 9 10 type Jobs struct { 11 Job Job 12 Args []Arg 13 }