summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevron Rees <kevron.m.rees@intel.com>2015-01-12 10:03:53 -0800
committerKevron Rees <kevron.m.rees@intel.com>2015-01-26 13:15:56 -0800
commit3ae1e967bf23b7fb41364308562608d4b391c5ac (patch)
tree0bca1e6de284e250dba9dd86f3743d3c4c48e6d7
parent0809c21c70263046b75491a86e00df6e34470a29 (diff)
downloadautomotive-message-broker-3ae1e967bf23b7fb41364308562608d4b391c5ac.tar.gz
[Documentation] - fix GetHistory return type (should be a{svd})
-rw-r--r--docs/amb.in.fidl23
1 files changed, 22 insertions, 1 deletions
diff --git a/docs/amb.in.fidl b/docs/amb.in.fidl
index 0a63fe20..2fd78306 100644
--- a/docs/amb.in.fidl
+++ b/docs/amb.in.fidl
@@ -116,6 +116,27 @@ map Dictionary {
}
/*!
+ * \brief HistoryObject is returned with GetHistory call
+ */
+interface HistoryObject {
+
+ /*!
+ * \brief Name of property
+ */
+ attribute String Name readonly
+
+ /*!
+ * \brief Value of property
+ */
+ attribute Variant Value readonly
+
+ /*!
+ * \brief Time in seconds since unix epoch.
+ */
+ attribute Double Time readonly
+}
+
+/*!
* VehiclePropertyType
* \brief VehiclePropertyType is the base class for all Data types.
*/
@@ -138,7 +159,7 @@ interface VehiclePropertyType {
* \arg endTime time stamp in Seconds since Unix Epoc
*/
method GetHistory(Double beginTime, Double endTime) {
- out{ Dictionary result}
+ out{ array of HistoryObject result }
}
}