org.freedesktop.dbus.AbstractPropertiesHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluez-dbus Show documentation
Show all versions of bluez-dbus Show documentation
Java native bluetooth library which uses bluez via dbus (linux only)
package org.freedesktop.dbus;
import com.github.hypfvieh.bluetooth.DeviceManager;
/**
* Subclass this abstract class for creating a callback for changed properties.
*
* As soon as your callback is registered by calling {@link DeviceManager#registerPropertyHandler(AbstractPropertiesHandler)},
* all property changes by Dbus will be visible in the handle(DBusSigHandler) method.
* method of your callback class.
*
* @author hypfvieh
*
*/
public abstract class AbstractPropertiesHandler implements DBusSigHandler {
}