[backend/queue] Make PostgresJobQueue<T> abstract

This commit is contained in:
Laura Hausmann 2024-10-18 04:32:25 +02:00
parent 5d01c11e35
commit 60b18f434f
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -181,7 +181,7 @@ public interface IPostgresJobQueue
public void RaiseJobDelayedEvent();
}
public class PostgresJobQueue<T>(
public abstract class PostgresJobQueue<T>(
string name,
Func<Job, T, IServiceProvider, CancellationToken, Task> handler,
int parallelism,