Ice
3.9
Slice API Reference
Toggle main menu visibility
Loading...
Searching...
No Matches
DataStorm
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.
9
module
DataStorm
10
{
11
/// Describes the operation used by a data writer to update a data element.
12
enum
SampleEvent
13
{
14
/// The data writer added the element.
15
Add
,
16
17
/// The data writer updated the element.
18
Update
,
19
20
/// The data writer partially updated the element.
21
PartialUpdate
,
22
23
/// The data writer removed the element.
24
Remove
,
25
}
26
27
/// A sequence of sample events.
28
sequence<SampleEvent>
SampleEventSeq
;
29
}
DataStorm::SampleEventSeq
sequence< SampleEvent > SampleEventSeq
A sequence of sample events.
Definition
SampleEvent.ice:28
DataStorm::SampleEvent
SampleEvent
Describes the operation used by a data writer to update a data element.
Definition
SampleEvent.ice:13
DataStorm::Update
@ Update
The data writer updated the element.
Definition
SampleEvent.ice:18
DataStorm::PartialUpdate
@ PartialUpdate
The data writer partially updated the element.
Definition
SampleEvent.ice:21
DataStorm::Remove
@ Remove
The data writer removed the element.
Definition
SampleEvent.ice:24
DataStorm::Add
@ Add
The data writer added the element.
Definition
SampleEvent.ice:15
DataStorm
Data-centric, broker-less publish/subscribe framework. C++ only.
Definition
SampleEvent.ice:10
Generated by
1.17.0