Method: DBus::Binding::DBusPendingCall#cancel
- Defined in:
- ext/ruby-dbus-pending-call.c
#cancel ⇒ nil
Cancels the pending call, any reply or error received will be ignored.
47 48 49 50 51 52 |
# File 'ext/ruby-dbus-pending-call.c', line 47
static VALUE
cDBusPendingCall_cancel(VALUE self)
{
dbus_pending_call_cancel(CALL_GET(self));
return Qnil;
}
|