elsa-core/test/integration/Elsa.ServiceBus.IntegrationTests/Contracts/ITestResetEventManager.cs
2023-10-20 13:38:40 +02:00

9 lines
276 B
C#

namespace Elsa.ServiceBus.IntegrationTests.Contracts
{
public interface ITestResetEventManager
{
public void Set(string resetEvent);
public AutoResetEvent Get(string resetEvent);
public AutoResetEvent Init(string resetEvent);
}
}