can different transport(shmem, tcp) bind to different datawriter/datareader in one publisher/subscriber in OpenDDS? I'm not sure OpenDDS supports this way with RepoInfo Discovery or only in Static Discovery?
I use `
TheTransportRegistry->bind_config("tcp1", datawriter1);
TheTransportRegistry->bind_config("shmem1", datawriter2);
` but it seems not work. still use the publisher‘s transport config
Yes, it should be possible, but it needs a bit more setup. After they are created writers and readers (as well as any
DDS::Entity
) have anenable
function that has to be called before they can be used. By default this is called automatically bycreate_datawriter
andcreate_datareader
. This is important because readers and writers can't change their config after they're enabled. You have to disable theautoenable_created_entities
property in parent entity's QoS, create the reader or writer, callbin_config
, and finally callenable
manually. Section 3.2.16 of the OpenDDS Developer's Guide talks a bit about this, but doesn't have an example, so here's snippet that I tested with the error checks and unrelated args omitted:You can also set this QoS on the domain participant or the service participant instead of the publisher or subscriber, but that requires manually enabling all the entities, which includes the publishers, subscribers, and topics, so I'm not sure I recommend that.