Ice 3.8
Slice API Reference
Loading...
Searching...
No Matches
SampleEvent.ice
1// Copyright (c) ZeroC, Inc.
2
3#pragma once
4
5[["cpp:dll-export:DATASTORM_API"]]
6[["cpp:doxygen:include:DataStorm/DataStorm.h"]]
7
8/// Data-centric, broker-less publish/subscribe framework. C++ only.
10{
11 /// Describes the operation used by a data writer to update a data element.
13 {
14 /// The data writer added the element.
16
17 /// The data writer updated the element.
19
20 /// The data writer partially updated the element.
22
23 /// The data writer removed the element.
25 }
26
27 /// A sequence of sample events.
28 sequence<SampleEvent> SampleEventSeq;
29}
sequence< SampleEvent > SampleEventSeq
A sequence of sample events.
SampleEvent
Describes the operation used by a data writer to update a data element.
@ Update
The data writer updated the element.
@ PartialUpdate
The data writer partially updated the element.
@ Remove
The data writer removed the element.
@ Add
The data writer added the element.
Data-centric, broker-less publish/subscribe framework. C++ only.