Object MessagePersistent

  • All Implemented Interfaces:

    
    public class MessagePersistent
    
                        

    Message storage policy flag constants.

    Defines message storage and unread count behavior. Used when registering custom message types to specify how the SDK handles them.

    // Stored and counted toward unread count
    val flag = MessagePersistent.COUNT
    
    // Stored but not counted
    val flag = MessagePersistent.PERSIST
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      public final static Integer NONE
      public final static Integer PERSIST
      public final static Integer COUNT
      public final static Integer STATUS
      public final static MessagePersistent INSTANCE
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail