52 mDistinctRoutesIndex{createDistinctOutputRouteIndex(mSpec.outputs)}
54 std::scoped_lock<
O2_LOCKABLE(std::recursive_mutex)> lock(mMutex);
56 auto numInputTypes = mDistinctRoutesIndex.size();
59 std::string queries =
"";
60 for (
size_t i = 0;
i < numInputTypes; ++
i) {
62 assert(mDistinctRoutesIndex[
i] < routes.size());
63 mOutputs.push_back(routes[mDistinctRoutesIndex[
i]].matcher);
70 states.registerState({.name =
"output_matchers", .stateId = stateId, .sendInitialValue =
true});
72 states.processCommandQueue();
74 for (
size_t i = 0;
i < mOutputs.size(); ++
i) {
75 mPresentDefaults.push_back(mOutputs[
i].lifetime != Lifetime::Timeframe);
82 for (
auto& input : mSpec.
inputs) {
83 if (input.matcher.lifetime != Lifetime::Timeframe && input.matcher.lifetime != Lifetime::Optional) {
84 LOGP(detail,
"Disabling the Lifetime::timeframe check because not all the inputs are of kind Lifetime::Timeframe");
85 mPresentDefaults.resize(0);
90 LOGP(detail,
"Disabling the Lifetime::timeframe check because the completion policy is not the default one");
91 mPresentDefaults.resize(0);
void preSendingMessagesCallbacks(ServiceRegistryRef, fair::mq::Parts &parts, ChannelIndex channelindex)
Invoke before sending messages parts on a channel channelindex.