9 lines
276 B
C#
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);
|
|
}
|
|
} |