ADC Home > Reference Library > Documentation > Performance > Xgrid Foundation Reference

Methods


-connectionDidClose:
This method is called as soon as the connection enters the Closed state from the Open state.
-connectionDidNotOpen:withError:
This method is called as soon as the connection enters the Closed state from the Opening state.
-connectionDidOpen:
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;
Parameter Descriptions
connection
The 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;
Parameter Descriptions
connection
The connection that didn't open.
error
The error that was encountered.

connectionDidOpen:


This method is called as soon as the connection enters the Open state.

- (void)connectionDidOpen:(XGConnection *)connection;
Parameter Descriptions
connection
The connection that just opened.

(Last Updated April 21, 2005)