AvahiServer constructor

AvahiServer(
  1. DBusClient client,
  2. String destination,
  3. DBusObjectPath path
)

Implementation

AvahiServer(DBusClient client, String destination, DBusObjectPath path)
    : super(client, name: destination, path: path) {
  stateChanged = DBusRemoteObjectSignalStream(
          object: this,
          interface: 'org.freedesktop.Avahi.Server',
          name: 'StateChanged',
          signature: DBusSignature('is'))
      .asBroadcastStream()
      .map((signal) => AvahiServerStateChanged(signal));
}