summaryrefslogtreecommitdiff
path: root/examples/subscribe-sample.cpp
Commit message (Collapse)AuthorAgeFilesLines
* vsomeip 3.1.7.13.1.7.1Lutz Bichler2020-02-121-3/+3
|
* vsomeip 2.10.112.10.11Juergen Gehring2018-05-221-0/+189
|
* vsomeip 2.10.11 2.10.12 2.10.13 2.10.14 2.10.15 2.10.16 2.10.17 2.10.18 ↵Juergen Gehring2018-05-221-189/+0
| | | | 2.10.19 2.10.20 2.10.21
* vSomeIP 2.6.12.6.1Juergen Gehring2017-03-071-4/+2
|
* vSomeIP 2.5.32.5.3Juergen Gehring2017-02-281-1/+1
|
* vSomeIP 2.5.12.5.1Jürgen Gehring2016-12-121-7/+16
|
* vsomeip 2.4.22.4.2Jürgen Gehring2016-10-111-1/+26
|
* vSomeIP 2.2.42.2.4Jürgen Gehring2016-09-201-1/+11
|
* vSomeIP 2.0.02.0.0Dirk Huss2015-11-251-110/+123
|
* vSomeIP 1.3.01.3.0Jürgen Gehring2015-07-291-5/+6
|
* Removed "get/set" methods in application interface. The removedLutz Bichler2014-10-201-5/+18
| | | | | | | | | | | | | | | | | | implementation used the event identifiers instead of the specific identifiers for setters and getters. As it is not possible to hide the specific get/set identifier from an application without changing method/event identifiers, the responsibility for implementing get/set is shifted to the application layer. Introduced a new interface function "notify", which can be used by an application to update a local event with a given payload. This function should be called whenever an event/field changes its value, thus it is especially useful for implementing the set function. Adapted the subscribe/notify sample to use the new interface. Signed-off-by: Lutz Bichler <Lutz.Bichler@bmw.de>
* Implemented local event/field handling.Lutz Bichler2014-08-191-2/+16
| | | TODO: implement application-internal event/field handling.
* Enabled reliable events/fields. The configuration of an event wasLutz Bichler2014-08-181-7/+6
| | | | | extended by an "is_reliable" configuration variable and the get-/set-methods were extended by a flag to specify whether or not reliable transport shall be used to access the field.
* Implemented get/set of fields. Only currently this works for remoteLutz Bichler2014-08-051-68/+83
| | | | | | | events/fields. TODO: enable the mechanism for local events/fields. The simple approach (sending locally) would require serialization/deserialization which I'd like to avoid...
* Implemented notification events (tested over IP / untested internally).Lutz Bichler2014-08-041-0/+92