OnixS ICE iMpact Multicast Price Feed Handler C++ library  8.18.0
API documentation
Rfq.h
Go to the documentation of this file.
1 /**
2  * \file
3  * \brief Declare `OnixS::ICE::iMpact::MarketData::Rfq` message structure
4  */
5 /*
6  * Copyright (c) Onix Solutions Limited. All rights reserved.
7  *
8  * This software owned by Onix Solutions Limited and is protected by copyright law
9  * and international copyright treaties.
10  *
11  * Access to and use of the software is governed by the terms of the applicable ONIXS Software
12  * Services Agreement (the Agreement) and Customer end user license agreements granting
13  * a non-assignable, non-transferable and non-exclusive license to use the software
14  * for it's own data processing purposes under the terms defined in the Agreement.
15  *
16  * Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
17  * of this source code or associated reference material to any other location for further reproduction
18  * or redistribution, and any amendments to this copyright notice, are expressly prohibited.
19  *
20  * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
21  * the terms of the Agreement is a violation of copyright law.
22  */
23 
24 #pragma once
25 
26 #include "../Enumerations.h"
27 #include "../Export.h"
28 #include "../Types.h"
29 
30 #include <iosfwd>
31 #include <string>
32 
33 namespace OnixS { namespace ICE { namespace iMpact { namespace MarketData {
34 
35 /// This class represents the RFQ Message.
36 struct ONIXS_ICEMDH_EXPORT Rfq
37 {
38  /// Message type constant
39  enum
40  {
41  messageType = 'k'
42  };
43 
44  /// Unique identifier of the market.
46 
47  /// Date time of the RFQ. Milliseconds since Jan 1st, 1970, 00:00:00 GMT.
49 
50  /// System ID of the RFQ.
51  long long rfqSystemId;
52 
53  /// Market type ID.
54  short marketTypeId;
55 
56  /// Unique identifier of the market.
58 
59  /// Quantity.
60  int quantity;
61 
62  /// Tells whether request represents bid or offer.
64 
65  /// Default constructor.
66  Rfq();
67 
68  /// Initialize from raw message data.
69  Rfq(const char* data, std::size_t dataSize);
70 
71  /// Deserialize from raw data.
72  void deserialize(const char* data, std::size_t dataSize);
73 
74  /// Reset all fields to default values.
75  void reset();
76 
77  /// Returns string representation.
78  std::string toString() const;
79 };
80 
81 /// Make it printable using C++ I/O streams.
82 ONIXS_ICEMDH_EXPORT std::ostream& operator<<(std::ostream&, const Rfq&);
83 
84 }}}} // namespace OnixS::ICE::iMpact::MarketData
MarketId marketId
Unique identifier of the market.
Definition: Rfq.h:45
short marketTypeId
Market type ID.
Definition: Rfq.h:54
DateTime messageTimestamp
Date time of the RFQ. Milliseconds since Jan 1st, 1970, 00:00:00 GMT.
Definition: Rfq.h:48
int MarketId
Alias for market identifiers type.
Definition: Types.h:39
MarketId underlyingMarketId
Unique identifier of the market.
Definition: Rfq.h:57
std::ostream & operator<<(std::ostream &, const Error &)
Make it printable to formatted C++ I/O streams.
Side::Enum side
Tells whether request represents bid or offer.
Definition: Rfq.h:63
long long rfqSystemId
System ID of the RFQ.
Definition: Rfq.h:51
long long DateTime
Represents the number of nanoseconds since Jan 1st, 1970, 00:00:00 GMT.
Definition: Types.h:57
Enum
Trading side constants.
Definition: Enumerations.h:38
This class represents the RFQ Message.
Definition: Rfq.h:36