Add GetType() to UnmanagedRegion

This commit is contained in:
Alexey Rybalchenko
2021-04-09 12:25:56 +02:00
parent ed2dcedf03
commit 9defa71622
3 changed files with 5 additions and 0 deletions

View File

@@ -51,6 +51,8 @@ class UnmanagedRegion final : public fair::mq::UnmanagedRegion
void SetLinger(uint32_t /* linger */) override { LOG(debug) << "ZeroMQ UnmanagedRegion linger option not implemented. Acknowledgements are local."; }
uint32_t GetLinger() const override { LOG(debug) << "ZeroMQ UnmanagedRegion linger option not implemented. Acknowledgements are local."; return 0; }
Transport GetType() const override { return Transport::ZMQ; }
virtual ~UnmanagedRegion()
{
LOG(debug) << "destroying region " << fId;