Class InboundSignal

java.lang.Object
com.lucimber.dbus.message.InboundSignal
All Implemented Interfaces:
InboundMessage, Message

public final class InboundSignal extends Object implements InboundMessage
An inbound signal message.
Since:
1.0
  • Constructor Details

    • InboundSignal

      public InboundSignal(DBusUInt32 serial, DBusString sender, DBusObjectPath path, DBusString iface, DBusString member)
      Constructs a new instance with mandatory parameter.
      Parameters:
      serial - the serial number
      sender - the sender of this signal
      path - the object path
      iface - the name of the D-Bus interface
      member - the name of this signal
    • InboundSignal

      public InboundSignal(DBusUInt32 serial, DBusString sender, DBusObjectPath path, DBusString iface, DBusString member, DBusSignature signature, List<? extends DBusType> payload)
      Constructs a new instance with all parameter.
      Parameters:
      serial - the serial number
      sender - the sender of this signal
      path - the object path
      iface - the name of the D-Bus interface
      member - the name of this signal
      signature - optional; the signature of the message body
      payload - optional; the message body
  • Method Details