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-12 13:45:22 -0800
commit7d21cb16c223baee879f2e898ed4c5be5031dd74 (patch)
treeb15705d2c7bcdf863653cbc6385d290f4d370162
parent6e4b44c66d1ef4b9c2af024138ce355eb7138fa9 (diff)
downloadautomotive-message-broker-7d21cb16c223baee879f2e898ed4c5be5031dd74.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 }
}
}