mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 17:41:45 +00:00
Adding multiple transports support & other fixes:
- Avoid polling when only one input channel is used. - Send only handles for shared memory transport. - Avoid waiting in the rate logger thread when nothing to log. - Hide warnings from generated files - Fix #483
This commit is contained in:
committed by
Mohammad Al-Turany
parent
22abc3671b
commit
8defd77b63
20
examples/MQ/multiple-transports/startMTEx.sh.in
Executable file
20
examples/MQ/multiple-transports/startMTEx.sh.in
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
config="@CMAKE_BINARY_DIR@/bin/config/ex-multiple-transports.json"
|
||||
|
||||
SAMPLER1="ex-mt-sampler1"
|
||||
SAMPLER1+=" --id sampler1"
|
||||
SAMPLER1+=" --transport shmem"
|
||||
SAMPLER1+=" --mq-config $config"
|
||||
xterm -geometry 80x30+0+0 -hold -e @CMAKE_BINARY_DIR@/bin/examples/MQ/multiple-transports/$SAMPLER1 &
|
||||
|
||||
SAMPLER2="ex-mt-sampler2"
|
||||
SAMPLER2+=" --id sampler2"
|
||||
SAMPLER2+=" --transport nanomsg"
|
||||
SAMPLER2+=" --mq-config $config"
|
||||
xterm -geometry 80x30+0+450 -hold -e @CMAKE_BINARY_DIR@/bin/examples/MQ/multiple-transports/$SAMPLER2 &
|
||||
|
||||
SINK="ex-mt-sink"
|
||||
SINK+=" --id sink1"
|
||||
SINK+=" --transport shmem"
|
||||
SINK+=" --mq-config $config"
|
||||
xterm -geometry 80x30+500+0 -hold -e @CMAKE_BINARY_DIR@/bin/examples/MQ/multiple-transports/$SINK &
|
Reference in New Issue
Block a user