Guest User

Untitled

a guest
Jun 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. -(void)server:(MBServer*)server
  2. willSendData:(NSMutableString*)data
  3. error:(NSError**)error;
  4.  
  5. // You *must* retain the returned error before
  6. // passing it back or you will crash
  7.  
  8. -(void)server:(MBServer*)server
  9. willSendData:(NSMutableString*)data
  10. error:(NSError**)error;
  11.  
  12. -(NSError *)server:(MBServer*)server
  13. willSendData:(NSMutableString*)data;
  14.  
  15. // Send your NSError response in the dictionary with the key
  16. // MBServerErrorResponseKey
  17.  
  18. -(void)server:(MBServer*)server
  19. willSendData:(NSMutableString*)data
  20. response:(NSMutableDictionary*)response;
  21.  
  22. -(void)server:(MBServer*)server
  23. willSendData:(NSMutableString*)data
  24. shouldStop:(BOOL*)stopFlag;
  25. -(NSError*)getLastErrorForServer:(MBServer*)server;
Add Comment
Please, Sign In to add comment