Bold360 and BoldChat Developer Center

BCSubmitPostChatDelegate.h

1 //
2 // Copyright (c) 2014 LogMeIn Inc. All rights reserved.
3 //
4 
5 #import <Foundation/Foundation.h>
6 
7 @protocol BCChatSession;
8 
13 @protocol BCSubmitPostChatDelegate <NSObject>
14 
20 - (void)bcChatSessionDidSubmitPostChat:(id<BCChatSession>)chatSession;
21 
28 - (void)bcChatSession:(id<BCChatSession>)chatSession didFailToSubmitPostChatWithError:(NSError *)error;
29 
30 
31 @end
32 
The callbacks for the result of BCChatSession::submitPostChat:delegate: .
Definition: BCSubmitPostChatDelegate.h:13
The main class protocol that is used to interact with an active chat session.
Definition: BCChatSession.h:29