mirror of https://github.com/abpframework/abp
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.
33 lines
1.0 KiB
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;
|
|
}
|
|
}
|
|
}
|