IChatMessageStore.cs 273 B

12345678
  1. namespace Application.Abstractions.Chat;
  2. public interface IChatMessageStore
  3. {
  4. Task AddMessageAsync(string roomKey, ChatMessage message);
  5. Task<IReadOnlyList<ChatMessage>> GetRecentMessagesAsync(string roomKey, int count);
  6. Task ClearRoomAsync(string roomKey);
  7. }