mirror of https://github.com/abpframework/abp
parent
c3d59e76b0
commit
fbee774eba
@ -1,23 +0,0 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Volo.Abp.EventBus
|
||||
{
|
||||
public class MySimpleTransientAsyncEventHandler : IAsyncEventHandler<MySimpleEventData>, IDisposable
|
||||
{
|
||||
public static int HandleCount { get; set; }
|
||||
|
||||
public static int DisposeCount { get; set; }
|
||||
|
||||
public Task HandleEventAsync(MySimpleEventData eventData)
|
||||
{
|
||||
++HandleCount;
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
++DisposeCount;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue