rticommunity / rticonnextdds-connector

RTI Connector for Connext DDS is a lightweight technology that enables DDS data to be accessed with Javascript (Node.js), Python, and Lua.
Other
56 stars 33 forks source link

Is it possible to set outpot to a serialized value instead of the setNumber for each. #56

Closed itayo closed 7 years ago

itayo commented 7 years ago

I have data in serialized way and would like to set this directly instead of setting each field.

Is this possible with rticonnextdds-connector or do i have to go for each field?

gianpiero commented 7 years ago

Hello,

Unfortunately we do not have that capability in connector. The only thing you can do is to create a object (nodejs) or a dictionary (python) that describes the whole sample and then call setFromJSON (nodejs) or setDictionary (python) to set it all at once.

I hope this help.

Best, Gianpiero

itayo commented 7 years ago

@gianpiero thank you for information