Rename start and stop receiver methods

This commit is contained in:
2020-04-01 15:56:08 +02:00
parent f5f65850f2
commit 69fb522efd
2 changed files with 6 additions and 4 deletions
+4 -2
View File
@@ -25,9 +25,11 @@ public:
const header_map& header_values,
const std::atomic_bool& is_writing);
void start(const std::string& connect_address,
void start_recv(const std::string& connect_address,
const uint8_t n_receiving_threads);
void stop();
void stop_recv();
};
#endif
+2 -2
View File
@@ -16,7 +16,7 @@ ZmqRecvModule::ZmqRecvModule(
is_receiving_(false)
{}
void ZmqRecvModule::start(
void ZmqRecvModule::start_recv(
const string& connect_address,
const uint8_t n_receiving_threads)
{
@@ -50,7 +50,7 @@ void ZmqRecvModule::start(
}
}
void ZmqRecvModule::stop()
void ZmqRecvModule::stop_recv()
{
#ifdef DEBUG_OUTPUT
using namespace date;