Package 

Interface OperatorTypingStatus


  • 
    public interface OperatorTypingStatus
    
                        

    Allows to notify the Visitor if Operator is typing a message or not.

    Usage example:

     engagement.getChat().on(Chat.Events.OPERATOR_TYPING_STATUS, operatorTypingStatus -> { System.out.println("Operator is typing: " + operatorTypingStatus.isTyping()); }); 
    
    • Method Summary

      Modifier and Type Method Description
      abstract boolean isTyping()
      • Methods inherited from class java.lang.Object

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