You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/framework/test/Volo.Abp.EventBus.Tests/Volo/Abp/EventBus/Distributed/MySimpleDistributedSingleIn...

33 lines
1.0 KiB

using System;
using System.Threading.Tasks;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Domain.Entities.Events.Distributed;
using Volo.Abp.MultiTenancy;
namespace Volo.Abp.EventBus.Distributed
{
public class MySimpleDistributedSingleInstanceEventHandler : IDistributedEventHandler<MySimpleEventData>, IDistributedEventHandler<EntityCreatedEto<MySimpleEventData>>, ITransientDependency
{
private readonly ICurrentTenant _currentTenant;
public MySimpleDistributedSingleInstanceEventHandler(ICurrentTenant currentTenant)
{
_currentTenant = currentTenant;
}
public static Guid? TenantId { get; set; }
public Task HandleEventAsync(MySimpleEventData eventData)
{
TenantId = _currentTenant.Id;
return Task.CompletedTask;
}
public Task HandleEventAsync(EntityCreatedEto<MySimpleEventData> eventData)
{
TenantId = _currentTenant.Id;
return Task.CompletedTask;
}
}
}