Package com.smartgwt.client.rpc
Interface HandleTransportErrorCallback
public interface HandleTransportErrorCallback
- 
Method Summary
Modifier and TypeMethodDescriptionvoidhandleTransportError(int transactionNum, int status, int httpResponseCode, String httpResponseText) RPCManager transport error callback. 
- 
Method Details
- 
handleTransportError
void handleTransportError(int transactionNum, int status, int httpResponseCode, String httpResponseText) RPCManager transport error callback.See
RPCManager.setHandleTransportErrorCallback()or theoverview of error handlingfor additional guidance.- Parameters:
 transactionNum- The submitted client-server transaction numberstatus- The RPCResponse status codehttpResponseCode- The HTTP Response code reported by the serverhttpResponseText- The raw HTTP Response text
 
 -