Bold360 and BoldChat Developer Center

BCChatMessageDelegate.h

1 //
2 // Copyright (c) 2014 LogMeIn Inc. All rights reserved.
3 //
4 
5 #import <Foundation/Foundation.h>
6 
7 @protocol BCChat;
8 @class BCMessage;
9 
15 @protocol BCChatMessageDelegate <NSObject>
16 
23 - (void)bcChat:(id<BCChat>)chat didAddMessage:(BCMessage *)message;
24 
31 - (void)bcChat:(id<BCChat>)chat didAddAutoMessage:(BCMessage *)message;
32 
33 
34 @optional
35 
42 - (void)bcChat:(id<BCChat>)chat didSendVisitorMessage:(BCMessage *)message;
43 
44 
45 @end
A protocol of an object that sends and receives chat messages, states and events. ...
Definition: BCChat.h:21
Callbacks on message departures and arrivals.
Definition: BCChatMessageDelegate.h:15
The container class for all information about a specific chat message.
Definition: BCMessage.h:13