We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 563a3a5 + 90260eb commit b8e55a5Copy full SHA for b8e55a5
1 file changed
base/src/main/java/com/smartdevicelink/proxy/rpc/listeners/OnRPCResponseListener.java
@@ -70,11 +70,16 @@ public void onStart(int correlationId){
70
public abstract void onResponse(int correlationId, final RPCResponse response);
71
72
/**
73
+ * @deprecated This method has been deprecated in favor of just using the onResponse callback. In the next
74
+ * version this method will be removed and all responses successful or not will be returned
75
+ * through the onResponse method callback.
76
+ *
77
* Called when there was some sort of error during the original request.
78
* @param correlationId
79
* @param resultCode
80
* @param info
81
*/
82
+ @Deprecated
83
public void onError(int correlationId, Result resultCode, String info){
84
85
};
0 commit comments