You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Send a message to all DataConsumers regardless their subchannels.dataPoducer.send(message,/* ppid */undefined,/* subchannels */undefined,/* requiredSubchannel */undefined);// Send a message only to DataConsumers in subchannels 1 or 2.dataPoducer.send(message,/* ppid */undefined,/* subchannels */[1,2],/* requiredSubchannel */undefined);// Send a message only to DataConsumers in subchannels 1 or 2 but just // if also in subchannel 0.dataPoducer.send(message,/* ppid */undefined,/* subchannels */[1,2],/* requiredSubchannel */0);
The text was updated successfully, but these errors were encountered:
Mechanism to specify which
DataConsumers
should receive a message sent viadataProducer.send()
.The text was updated successfully, but these errors were encountered: