mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
17 lines
480 B
C#
17 lines
480 B
C#
|
using System.Threading.Tasks;
|
||
|
using MalwareMultiScan.Backends.Messages;
|
||
|
|
||
|
namespace MalwareMultiScan.Scanner.Services.Interfaces
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Background scanning job.
|
||
|
/// </summary>
|
||
|
public interface IScanBackgroundJob
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Process scan request in the background worker.
|
||
|
/// </summary>
|
||
|
/// <param name="requestMessage">Request message.</param>
|
||
|
Task Process(ScanRequestMessage requestMessage);
|
||
|
}
|
||
|
}
|