From ba3a82b1df9ebb9abc32065f2dd4db8a5a696844 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Wed, 15 Jul 2020 11:45:45 +0200 Subject: [PATCH] Update FairMQSocket.h --- fairmq/FairMQSocket.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fairmq/FairMQSocket.h b/fairmq/FairMQSocket.h index 4f024099..f2fbedea 100644 --- a/fairmq/FairMQSocket.h +++ b/fairmq/FairMQSocket.h @@ -38,6 +38,9 @@ class FairMQSocket virtual void SetOption(const std::string& option, const void* value, size_t valueSize) = 0; virtual void GetOption(const std::string& option, void* value, size_t* valueSize) = 0; + /// If the backend supports it, fills the unsigned integer @a events with the ZMQ_EVENTS value + /// DISCLAIMER: this API is experimental and unsupported and might be dropped / refactored in + /// the future. virtual void Events(uint32_t* events) = 0; virtual void SetLinger(const int value) = 0; virtual int GetLinger() const = 0;