|
BLPAPI C++ 3.26.5
|
Namespaces | |
| namespace | BloombergLP |
| namespace | BloombergLP::blpapi |
Classes | |
| class | Event |
| class | EventQueue |
| class | MessageIterator |
Functions | |
| bool | operator== (const Event::iterator &lhs, const Event::iterator &rhs) |
| bool | operator!= (const Event::iterator &lhs, const Event::iterator &rhs) |
| void | swap (Event::iterator &lhs, Event::iterator &rhs) |
| Swap the contents of the lhs and rhs iterators. | |
| blpapi::Event | an event resulting from a subscription or request. |
| blpapi::EventQueue | A construct to handle replies synchronously. |
| blpapi::MessageIterator | An iterator over the Messages within an Event. |
Event. One or more Events are generated as a result of a subscription or a request. Events contain Message objects which can be accessed using range based for loop or a MessageIterator. This file also defines a EventQueue for handling replies synchronously. Event. EventQueue is used with a generateToken request. For any established session session pass an EventQueue object tokenEventQueue when calling generateToken. All Events in responses to generateToken request will be returned in tokenEventQueue. event and parse over messages | bool operator!= | ( | const Event::iterator & | lhs, |
| const Event::iterator & | rhs ) |
Return true if the specified lhs and rhs are not equal.
| bool operator== | ( | const Event::iterator & | lhs, |
| const Event::iterator & | rhs ) |
Return true if the specified lhs and rhs are the same iterator, or both are end iterators.
| void swap | ( | Event::iterator & | lhs, |
| Event::iterator & | rhs ) |
Swap the contents of the lhs and rhs iterators.