summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/include/CAmRoutingSender.h
diff options
context:
space:
mode:
authorChristian Linke <christian.linke@bmw.de>2015-11-04 13:55:55 +0000
committerChristian Linke <christian.linke@bmw.de>2015-11-04 13:55:55 +0000
commit28b3b278f06067ef7167cf0ffa56121ad9d3768a (patch)
treec515c71aaf7b21754d129ee7dc811bf37314f0c0 /AudioManagerDaemon/include/CAmRoutingSender.h
parent985bcfb9a3e83db5115d603925edccdf4dfba8c0 (diff)
downloadaudiomanager-28b3b278f06067ef7167cf0ffa56121ad9d3768a.tar.gz
* Bug fix 392. Some improvements regarding failed transactions in the router.
Signed-off-by: Christian Linke <christian.linke@bmw.de>
Diffstat (limited to 'AudioManagerDaemon/include/CAmRoutingSender.h')
-rw-r--r--AudioManagerDaemon/include/CAmRoutingSender.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/AudioManagerDaemon/include/CAmRoutingSender.h b/AudioManagerDaemon/include/CAmRoutingSender.h
index 532809a..4a23428 100644
--- a/AudioManagerDaemon/include/CAmRoutingSender.h
+++ b/AudioManagerDaemon/include/CAmRoutingSender.h
@@ -77,6 +77,7 @@ public:
am_Error_e asyncSetVolumes(am_Handle_s& handle, const std::vector<am_Volumes_s>& listVolumes);
am_Error_e asyncSetSinkNotificationConfiguration(am_Handle_s& handle, const am_sinkID_t sinkID, const am_NotificationConfiguration_s& notificationConfiguration);
am_Error_e asyncSetSourceNotificationConfiguration(am_Handle_s& handle, const am_sourceID_t sourceID, const am_NotificationConfiguration_s& notificationConfiguration);
+ am_Error_e resyncConnectionState(const am_domainID_t domainID, std::vector<am_Connection_s>& listOfExistingConnections);
struct InterfaceNamePairs //!< is used to pair interfaces with busnames
{
@@ -109,7 +110,8 @@ public:
};
- am_handleData_c returnHandleData(const am_Handle_s handle) const; //!< returns the handle data associated with a handle
+ am_Error_e returnHandleData(const am_Handle_s handle,CAmRoutingSender::am_handleData_c& handleData) const; //!< returns the handle data associated with a handle
+ am_Error_e returnHandleDataAndRemove(const am_Handle_s handle,CAmRoutingSender::am_handleData_c& handleData); //!< returns the handle data associated with a handle and removes the handle
#ifdef UNIT_TEST //this is needed to test RoutingSender
friend class IAmRoutingBackdoor;