Package org.freedesktop.dbus.interfaces
Interface DBusSigHandler<T extends DBusSignal>
-
- All Known Implementing Classes:
AbstractInterfacesAddedHandler,AbstractInterfacesRemovedHandler,AbstractPropertiesChangedHandler,AbstractSignalHandlerBase,DBusConnection.SigHandler,PeerSet
public interface DBusSigHandler<T extends DBusSignal>Handle a signal on DBus. All Signal handlers are run in their own Thread. Application writers are responsible for managing any concurrency issues.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(T _signal)Handle a signal.
-
-
-
Method Detail
-
handle
void handle(T _signal)
Handle a signal.- Parameters:
_signal- The signal to handle. If such a class exists, the signal will be an instance of the class with the correct type signature. Otherwise it will be an instance of DBusSignal
-
-