EMA C++ Edition
IOCtlCode.h
Go to the documentation of this file.
1/*|-----------------------------------------------------------------------------
2 *| This source code is provided under the Apache 2.0 license
3 *| and is provided AS IS with no warranty or guarantee of fit for purpose.
4 *| See the project's LICENSE.md for details.
5 *| Copyright (C) 2019 LSEG. All rights reserved. --
6 *|-----------------------------------------------------------------------------
7 */
8
9#ifndef __refinitiv_ema_access_IOCtlCode_h
10#define __refinitiv_ema_access_IOCtlCode_h
11
31
32namespace refinitiv {
33
34namespace ema {
35
36namespace access {
37
39{
40public:
41
46 {
47 MaxNumBuffersEnum = 1,
49 NumGuaranteedBuffersEnum = 2,
51 HighWaterMarkEnum = 3,
53 SystemReadBuffers = 4,
55 SystemWriteBuffers = 5,
57 ServerNumPoolBuffersEnum = 8,
59 CompressionThresholdEnum = 9,
60 };
61
62private:
63
64 IOCtlCode();
65 IOCtlCode( const IOCtlCode& );
66 IOCtlCode& operator=( const IOCtlCode& );
67};
68
69}
70
71}
72
73}
74
75#endif // __refinitiv_ema_access_IOCtlCode_h
Common.h file provides definitions of common variable types used in EMA.
#define EMA_ACCESS_API
Definition: Common.h:95
*|--------------------------------------------------------------------------—
Definition: AckMsg.h:62
The access namespace contains all interfaces and definitions specified for use with the EMA Access pa...
The ema namespace contains all interfaces and definitions specified for use with EMA.
IOCtlCode class provides enumeration representing I/O codes for modifying I/O values programmatically...
Definition: IOCtlCode.h:39