Class Conversation<T>

  • Type Parameters:
    T - type of data stored in this conversation

    @ThreadSafe
    public class Conversation<T>
    extends Object
    A single conversation object returned by ConversationStorageService, for storing temporary data.
    • Method Detail

      • getId

        public int getId()
      • setValue

        public void setValue​(@NotNull
                             T value)
        Set the value of this conversation. No other persisting mechanism is needed.
      • getValue

        @NotNull
        public T getValue()