Closed linkdotnet closed 5 months ago
Instant jobs should also be executable via an anonymous lambda:
instantJobRegistry.RunInstantJob((ServiceA a, ServiceB b) => {a.Do(b);});
That would gives us a big edge over Hangfire as you don't have to provide the dependencies as a closure!
Instant jobs should also be executable via an anonymous lambda:
That would gives us a big edge over Hangfire as you don't have to provide the dependencies as a closure!