summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/commands/mobile/unsubscribe_way_points_request.cc
Commit message (Collapse)AuthorAgeFilesLines
* Move commands to sdl rpc pluginAlexander Kutsan2018-06-261-76/+0
|
* Fixes handling of way points un/subscription for transport switch caseAndrey Oleynik (GitHub)2018-01-181-2/+2
| | | | | | In case app_id is used for way points subscription it being invalidated on transport switch and SDL can't unsubscribe same application after switch is done.
* Common functionality awaiting of certain HMI requestsAlexander Kutsan2017-11-131-0/+2
| | | | | | | | Add private methods in CommandImpl: - StartAwaitForInterface - EndAwaitForInterface - IsInterfaceAwaited Add usage of this methods across of commands that splited to multiple HMI interfaces
* Moves hash update logic into base class, checks UI interface state nowAndrey Oleynik2017-06-071-3/+5
| | | | | | | | In case RPC is expected to update application hash but UI component is not available, i.e. UI.IsReady returned 'false', hash update must be skipped. Changes move logic of hash updating into base class instead of duplicating it inside every related command class.
* Fix TTS IsReady false issues (#892)Oleh Herasym (GitHub)2016-10-121-4/+1
| | | | | | * Fix TTS IsReady false issues Related: APPLINK-28576, 28577, 28662
* Fix comments after reviewdtrunov2016-10-111-5/+15
| | | | | | | Renamed structure, renamed method, move common logic to separate method Fix comments after review. Remove OVERRIDE from destructor, create const variable, and change the method of obtaining parameter from smart object Related issue [APPLINK-25171](https://adc.luxoft.com/jira/browse/APPLINK-25171)
* Send OnHashChange for (Un)SubscribeWayPointsOrhan Mehmedov2016-07-211-0/+3
| | | | | | | | | | | | | | | | OnHashChange now is send in case of SubscribeWayPoints / UnsubscribeWayPoints mobile command. Fix for APPLINK-25808. Note: SDL must send OnHashChange() to mobile app after responding with "success:true". Create initial UT for Un/SubscribeForWayPoints Created initial basic unit tests for SubscribeWayPoints/UnsubscribeWayPoints commands. Related to APPLINK-25808. Correct formatting with check_style.sh Related to APPLINK-25808.
* Code style format with clang-formatKozoriz2016-04-251-11/+10
|
* Mobile commands update after removing all singletonesKozoriz2016-04-251-11/+7
|
* Add WayPoints API & fix resumption after rebaseHerasym Oleh2016-04-141-1/+1
|
* Add implementation SubscribeWayPoints&UnsubsribeWayPointsHerasym Oleh2016-04-131-0/+67
Add mobile request/response SubscribeWayPoints Add mobile request/response UnSubscribeWayPoints Add HMI request/response SubscribeWayPoints Add HMI request/response UnsubscribeWayPoints Add SendUnsubscribeWayPoints method in MessageHelper Add save subscribe app status to resumption DB & json Add Sending UnsubscribeWayPoints in case unexpected disconnect Related: APPLINK-21629 Conflicts: src/components/application_manager/src/application_manager_impl.cc