Interface AiChatMessageService

All Known Implementing Classes:
AiChatMessageDataService, AiChatMessageEmptyService

public interface AiChatMessageService
Provides access to the messages of the current user's AI conversations.

Operates purely on the AiChatMessage model and is implicitly scoped to the current user.

  • Method Details

    • createMessage

      AiChatMessage createMessage(AiConversation conversation, AiChatMessageType type, String message)
      Creates a new message of the given type in the conversation.
      Parameters:
      conversation - conversation the message belongs to
      type - message type
      message - message text
      Returns:
      the created message
    • loadLatestMessage

      @Nullable AiChatMessage loadLatestMessage(AiConversation conversation, @Nullable AiChatMessageType type)
      Loads the most recent message of the conversation, optionally restricted to a type.
      Parameters:
      conversation - conversation whose latest message is loaded
      type - message type to match, or null for any type
      Returns:
      the latest matching message, or null if there is none
    • loadMessages

      Collection<AiChatMessage> loadMessages(AiConversation conversation)
      Loads all messages of the conversation, oldest first.
      Parameters:
      conversation - conversation whose messages are loaded
      Returns:
      the conversation's messages, oldest first; empty if there are none