ADTF
Loading...
Searching...
No Matches
streaming_functions.h
Go to the documentation of this file.
1
7#pragma once
8
9namespace adtf
10{
11namespace streaming
12{
13namespace ant
14{
21 template <typename WRITER_TYPE>
22 WRITER_TYPE& flush(WRITER_TYPE& oWriter)
23 {
24 oWriter.Flush();
25 return oWriter;
26 }
27
34 template <typename WRITER_TYPE>
35 WRITER_TYPE& trigger(WRITER_TYPE& oWriter)
36 {
37 oWriter.ManualTrigger();
38 return oWriter;
39 }
40
41} //namespace ant
42
43using ant::flush;
44using ant::trigger;
45
46} //namespace streaming
47} //namespace adtf
Namespace for all functionality of the ADTF Streaming SDK provided since v3.0.
Definition bindingproxyoutport.h:16
WRITER_TYPE & flush(WRITER_TYPE &oWriter)
Definition streaming_functions.h:22
WRITER_TYPE & trigger(WRITER_TYPE &oWriter)
Definition streaming_functions.h:35
Namespace for the ADTF Streaming SDK.
Definition bindingproxyinport.h:14
Namespace for all functionality provided by ADTF and its SDKs.
Definition adtf_client_connector.h:14