#!/bin/bash export FAIRMQ_PATH=@FAIRMQ_BIN_DIR@ SESSION="$(@CMAKE_BINARY_DIR@/fairmq/fairmq-uuid-gen -h)" trap 'kill -TERM $SAMPLER1_PID; kill -TERM $SAMPLER2_PID; kill -TERM $SINK_PID; wait $SAMPLER1_PID; wait $SAMPLER2_PID; wait $SINK_PID; @CMAKE_BINARY_DIR@/fairmq/fairmq-shmmonitor --cleanup --session $SESSION;' TERM SINK="fairmq-ex-multiple-transports-sink" SINK+=" --id sink1" SINK+=" --verbosity veryhigh" SINK+=" --session $SESSION" SINK+=" --max-iterations 1" SINK+=" --control static --color false" SINK+=" --transport shmem" SINK+=" --channel-config name=data1,type=pull,method=connect,address=tcp://127.0.0.1:5555" SINK+=" name=data2,type=pull,method=connect,address=tcp://127.0.0.1:5556,transport=nanomsg" SINK+=" name=ack,type=pub,method=connect,address=tcp://127.0.0.1:5557,transport=zeromq" @CMAKE_CURRENT_BINARY_DIR@/$SINK & SINK_PID=$! SAMPLER1="fairmq-ex-multiple-transports-sampler1" SAMPLER1+=" --id sampler1" SAMPLER1+=" --session $SESSION" SAMPLER1+=" --verbosity veryhigh" SAMPLER1+=" --max-iterations 1" SAMPLER1+=" --control static --color false" SAMPLER1+=" --transport shmem" SAMPLER1+=" --channel-config name=data1,type=push,method=bind,address=tcp://127.0.0.1:5555" SAMPLER1+=" name=ack,type=sub,method=bind,address=tcp://127.0.0.1:5557,transport=zeromq" @CMAKE_CURRENT_BINARY_DIR@/$SAMPLER1 & SAMPLER1_PID=$! SAMPLER2="fairmq-ex-multiple-transports-sampler2" SAMPLER2+=" --id sampler2" SAMPLER2+=" --session $SESSION" SAMPLER2+=" --verbosity veryhigh" SAMPLER2+=" --max-iterations 1" SAMPLER2+=" --control static --color false" SAMPLER2+=" --transport nanomsg" SAMPLER2+=" --channel-config name=data2,type=push,method=bind,address=tcp://127.0.0.1:5556" @CMAKE_CURRENT_BINARY_DIR@/$SAMPLER2 & SAMPLER2_PID=$! wait $SAMPLER1_PID wait $SAMPLER2_PID wait $SINK_PID