SPMS_API/SPMS.Application/Interfaces/IScheduleCancelStore.cs
SEAN fe1dcd0176 feat: 예약 발송 등록/취소 API 구현 (#116)
- POST /v1/in/push/schedule (예약 발송 등록)
- POST /v1/in/push/schedule/cancel (예약 취소)
- ScheduleCancelStore: Redis 기반 예약 취소 추적
- ScheduleWorker: 취소된 예약 메시지 ACK 후 스킵 로직 추가

Closes #116
2026-02-10 17:06:04 +09:00

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);
}