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

Exposed wait operation in python #20

Closed jpovedano closed 9 years ago

gianpiero commented 9 years ago

@jpovedano I think we are missing the return code is an integer.

What we actually return is

return DDS_WaitSet_wait(self->readersWaitSet,&conditions,&ddsTimeout);

so at least the user can know if it is a timeout or not

jpovedano commented 9 years ago

@gianpiero you are right. Added return type to wait function

gianpiero commented 9 years ago

thanks @jpovedano