smartdevicelink / sdl_app_library_guides

DocDown Guide Content for
https://www.smartdevicelink.com
BSD 3-Clause "New" or "Revised" License
16 stars 13 forks source link

Batch Sending RPCs Android/JavaSE Documentation Fix #540

Closed ChloeMJM closed 2 years ago

ChloeMJM commented 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/

theresalech commented 2 years ago

Closed via #541