Used cached default transport in FairMQDevice::Transport()

This commit is contained in:
Alexey Rybalchenko
2018-05-04 14:22:27 +02:00
committed by Mohammad Al-Turany
parent 9906475b6f
commit 155618af57
6 changed files with 31 additions and 33 deletions

View File

@@ -92,7 +92,7 @@ class FairMQChannel
/// Get channel transport ("default", "zeromq", "nanomsg" or "shmem")
/// @return Returns channel transport (e.g. "default", "zeromq", "nanomsg" or "shmem")
std::string GetTransport() const;
std::string GetTransportName() const;
/// Get socket send buffer size (in number of messages)
/// @return Returns socket send buffer size (in number of messages)
@@ -301,7 +301,7 @@ class FairMQChannel
std::string fType;
std::string fMethod;
std::string fAddress;
std::string fTransport;
std::string fTransportName;
int fSndBufSize;
int fRcvBufSize;
int fSndKernelSize;