mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-23 06:32:41 +02:00
Rename start and stop receiver methods
This commit is contained in:
@@ -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
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user