山东雷驰
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
985 B

3 months ago
using Kean.Domain.Identity.Events;
using Kean.Domain.Identity.Repositories;
using System.Threading;
using System.Threading.Tasks;
namespace Kean.Domain.Identity.EventHandlers
{
/// <summary>
/// 身份验证成功时,刷新时间戳
/// </summary>
public sealed class AuthenticateSuccessEventHandler_Refresh : EventHandler<AuthenticateSuccessEvent>
{
private readonly ISessionRepository _sessionRepository; // 会话仓库
/// <summary>
/// 依赖注入
/// </summary>
public AuthenticateSuccessEventHandler_Refresh(
ISessionRepository sessionRepository)
{
_sessionRepository = sessionRepository;
}
/// <summary>
/// 处理程序
/// </summary>
public override async Task Handle(AuthenticateSuccessEvent @event, CancellationToken cancellationToken)
{
await _sessionRepository.UpdateSession(@event.Session);
}
}
}