mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 21:39:34 +02:00
improvements to scheduler,
better parallelism on RSS fetch
This commit is contained in:
12
NzbDrone.Common/Messaging/TestCommandExecutor.cs
Normal file
12
NzbDrone.Common/Messaging/TestCommandExecutor.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Threading;
|
||||
|
||||
namespace NzbDrone.Common.Messaging
|
||||
{
|
||||
public class TestCommandExecutor : IExecute<TestCommand>
|
||||
{
|
||||
public void Execute(TestCommand message)
|
||||
{
|
||||
Thread.Sleep(message.Duration);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user