File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11language : julia
22julia :
3+ - 0.4
4+ - 0.5
35 - nightly
4- - release
56sudo : required
67dist : trusty
78before_install :
Original file line number Diff line number Diff line change 11# API for publishing and subscribing to message topics
22export Publisher, Subscriber, publish
33
4+ using Compat
5+
46type Publisher{MsgType<: MsgT }
57 o:: PyObject
68
@@ -28,7 +30,7 @@ type Subscriber{MsgType<:MsgT}
2830 @debug (" Creating <$(string (MsgType)) > subscriber on topic: '$topic '" )
2931 rospycls = _get_rospy_class (MsgType)
3032
31- cond = Base . AsyncCondition ()
33+ cond = Compat . AsyncCondition ()
3234 mqueue = _py_ros_callbacks[" MessageQueue" ](CB_NOTIFY_PTR, cond. handle)
3335 subobj = __rospy__[:Subscriber ](ascii (topic), rospycls, mqueue[" storemsg" ]; kwargs... )
3436
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ type Service{SrvType <: ServiceDefinition}
4242 @debug (" Providing <$SrvType > service at '$name '" )
4343 rospycls = _get_rospy_class (SrvType)
4444
45- cond = Base . AsyncCondition ()
45+ cond = Compat . AsyncCondition ()
4646 pysrv = _py_ros_callbacks[" ServiceCallback" ](CB_NOTIFY_PTR, cond. handle)
4747
4848 srvobj = try
You can’t perform that action at this time.
0 commit comments