Closed ChloeMJM closed 2 years ago
In Batch Sending RPCs (Android and JavaSE Documentation), Sending Concurrent Requests code example contains an error.
sdlManager.sendRPCs(Arrays.asList(subscribeButtonLeft, subscribeButtonLeft), new OnMultipleRequestListener() {
should be:
sdlManager.sendRPCs(Arrays.asList(subscribeButtonLeft, subscribeButtonRight), new OnMultipleRequestListener() {
https://smartdevicelink.com/en/guides/javase/other-sdl-features/batch-sending-rpcs/ https://smartdevicelink.com/en/guides/android/other-sdl-features/batch-sending-rpcs/
Closed via #541
In Batch Sending RPCs (Android and JavaSE Documentation), Sending Concurrent Requests code example contains an error.
sdlManager.sendRPCs(Arrays.asList(subscribeButtonLeft, subscribeButtonLeft), new OnMultipleRequestListener() {
should be:
sdlManager.sendRPCs(Arrays.asList(subscribeButtonLeft, subscribeButtonRight), new OnMultipleRequestListener() {
https://smartdevicelink.com/en/guides/javase/other-sdl-features/batch-sending-rpcs/ https://smartdevicelink.com/en/guides/android/other-sdl-features/batch-sending-rpcs/