- POST /v1/in/push/schedule (예약 발송 등록) - POST /v1/in/push/schedule/cancel (예약 취소) - ScheduleCancelStore: Redis 기반 예약 취소 추적 - ScheduleWorker: 취소된 예약 메시지 ACK 후 스킵 로직 추가 Closes #116
8 lines
276 B
C#
8 lines
276 B
C#
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface IScheduleCancelStore
|
|
{
|
|
Task MarkCancelledAsync(string scheduleId, CancellationToken cancellationToken = default);
|
|
Task<bool> IsCancelledAsync(string scheduleId, CancellationToken cancellationToken = default);
|
|
}
|