Rename run_writers to run_receivers

In the new implementation the default state is to have the receivers running,
but not the writers.
This commit is contained in:
2019-04-23 12:02:49 +02:00
parent 81f4f194e3
commit 7cd11be183
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ void ProcessManager::notify_last_pulse_id(uint64_t pulse_id)
} catch (...){}
}
void ProcessManager::run_writer(uint8_t n_receiving_threads)
void ProcessManager::run_receivers(uint8_t n_receiving_threads)
{
#ifdef DEBUG_OUTPUT
+1 -1
View File
@@ -26,7 +26,7 @@ class ProcessManager
ProcessManager(WriterManager& writer_manager, ZmqReceiver& receiver,
RingBuffer& ring_buffer, const H5Format& format, uint16_t rest_port, const std::string& bsread_rest_address, hsize_t frames_per_file=0);
void run_writer(uint8_t n_receiving_threads);
void run_receivers(uint8_t n_receiving_threads);
void receive_zmq();