Revision a0f033b8
Added by David Sorber almost 6 years ago
| software/dbus_test/service.py | ||
|---|---|---|
|
@dbus.service.method("com.example.service.Poke", in_signature='', out_signature='')
|
||
|
def poke(self):
|
||
|
print('Got a poke!')
|
||
|
GLib.timeout_add(10, self.poke_runner)
|
||
|
GLib.timeout_add(1, self.poke_runner)
|
||
|
print('Post idle add')
|
||
|
|
||
|
def poke_runner(self):
|
||
Minor updates mainly to pwmgr to fix Gtk3.0 deprecations.