MCPcopy Create free account
hub / github.com/apohl79/audiogridder / suspendProcessingRemoteOnly

Method suspendProcessingRemoteOnly

Server/Source/ProcessorClient.cpp:606–618  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

604}
605
606void ProcessorClient::suspendProcessingRemoteOnly(bool b) {
607 std::lock_guard<std::mutex> lock(m_cmdMtx);
608
609 if (b) {
610 Message<BypassPlugin> msg(this);
611 PLD(msg).setNumber(0);
612 msg.send(m_sockCmdOut.get());
613 } else {
614 Message<UnbypassPlugin> msg(this);
615 PLD(msg).setNumber(0);
616 msg.send(m_sockCmdOut.get());
617 }
618}
619
620int ProcessorClient::getTotalNumOutputChannels() { return m_numOutputChannels; }
621

Callers 1

runTestMethod · 0.80

Calls 3

setNumberMethod · 0.80
sendMethod · 0.45
getMethod · 0.45

Tested by 1

runTestMethod · 0.64