mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-23 21:12:22 +00:00
12 lines
330 B
C#
12 lines
330 B
C#
using System.Threading.Tasks;
|
|
using Hangfire;
|
|
using MalwareMultiScan.Shared.Message;
|
|
|
|
namespace MalwareMultiScan.Shared.Services.Interfaces
|
|
{
|
|
[AutomaticRetry(Attempts = 0, OnAttemptsExceeded = AttemptsExceededAction.Delete)]
|
|
public interface IScanBackgroundJob
|
|
{
|
|
Task Process(ScanQueueMessage message);
|
|
}
|
|
} |