|
|
NSObject(XGConnectionDelegate) |
| Extends Class: | |
| Declared In: |
The XGConnectionDelegate delegate is used to report the status of the connection and any errors that are encountered.
This method is called as soon as the connection enters the Closed state from the Open state.
This method is called as soon as the connection enters the Closed state from the Opening state.
This method is called as soon as the connection enters the Open state.
connectionDidClose: |
This method is called as soon as the connection enters the Closed state from the Open state.
- (void)connectionDidClose:(XGConnection *)connection;
connectionThe connection that closed.
connectionDidNotOpen:withError: |
This method is called as soon as the connection enters the Closed state from the Opening state.
- (void)connectionDidNotOpen:(XGConnection *)connection withError:(NSError *)error;
connectionThe connection that didn't open.
errorThe error that was encountered.
connectionDidOpen: |
This method is called as soon as the connection enters the Open state.
- (void)connectionDidOpen:(XGConnection *)connection;
connectionThe connection that just opened.
Last Updated: 2009-08-12