Bold360 and BoldChat Developer Center

BCChatTyperDelegate.h

1 //
2 // Copyright (c) 2014 LogMeIn Inc. All rights reserved.
3 //
4 
5 #import <Foundation/Foundation.h>
6 
7 @protocol BCChat;
8 @class BCPerson;
9 
15 @protocol BCChatTyperDelegate <NSObject>
16 
24 - (void)bcChat:(id<BCChat>)chat didUpdateTyper:(BCPerson *)person typing:(BOOL)typing;
25 
26 @optional
33 - (void)bcChat:(id<BCChat>)chat didSendVisitorTyping:(BOOL)typing;
34 
35 
36 @end
An entity participating in the chat. It can be either a visitor, an operator or the system...
Definition: BCPerson.h:24
A protocol of an object that sends and receives chat messages, states and events. ...
Definition: BCChat.h:21
Callbacks on typing events.
Definition: BCChatTyperDelegate.h:15