Class InboundMethodCall

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

public final class InboundMethodCall extends Object implements InboundMessage
An inbound method call message.
Since:
1.0
  • Constructor Details

    • InboundMethodCall

      public InboundMethodCall(DBusUInt32 serial, DBusString sender, DBusObjectPath path, DBusString member, boolean replyExpected)
      Constructs a new instance with mandatory parameter.
      Parameters:
      serial - the serial number
      sender - the origin of this method call
      path - the object path
      member - the name of the method
      replyExpected - states if reply is expected
    • InboundMethodCall

      public InboundMethodCall(DBusUInt32 serial, DBusString sender, DBusObjectPath path, DBusString member, boolean replyExpected, DBusString iface, DBusSignature signature, List<? extends DBusType> payload)
      Constructs a new instance with all parameter.
      Parameters:
      serial - the serial number
      sender - the origin of this method call
      path - the object path
      member - the name of the method
      replyExpected - states if reply is expected
      iface - optional; the name of the interface
      signature - optional; the signature of the message body
      payload - optional; the message body
  • Method Details