Class DBusCallInfo


  • public class DBusCallInfo
    extends java.lang.Object
    Holds information on a method call
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int ASYNC  
      private java.lang.String destination  
      private int flags  
      private java.lang.String iface  
      private java.lang.String method  
      static int NO_REPLY
      Indicates the caller won't wait for a reply (and we won't send one).
      private java.lang.String objectpath  
      private java.lang.String source  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDestination()
      Returns the name with which we were addressed on the Bus.
      int getFlags()
      Returns any flags set on this method call.
      java.lang.String getInterface()
      Returns the interface this method was called with.
      java.lang.String getMethod()
      Returns the method name used to call this method.
      java.lang.String getObjectPath()
      Returns the object path used to call this method.
      java.lang.String getSource()
      Returns the BusID which called the method.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • NO_REPLY

        public static final int NO_REPLY
        Indicates the caller won't wait for a reply (and we won't send one).
        See Also:
        Constant Field Values
      • source

        private final java.lang.String source
      • destination

        private final java.lang.String destination
      • objectpath

        private final java.lang.String objectpath
      • iface

        private final java.lang.String iface
      • method

        private final java.lang.String method
      • flags

        private final int flags
    • Constructor Detail

      • DBusCallInfo

        public DBusCallInfo​(Message _m)
    • Method Detail

      • getSource

        public java.lang.String getSource()
        Returns the BusID which called the method.
        Returns:
        source
      • getDestination

        public java.lang.String getDestination()
        Returns the name with which we were addressed on the Bus.
        Returns:
        destination
      • getObjectPath

        public java.lang.String getObjectPath()
        Returns the object path used to call this method.
        Returns:
        objectpath
      • getInterface

        public java.lang.String getInterface()
        Returns the interface this method was called with.
        Returns:
        interface
      • getMethod

        public java.lang.String getMethod()
        Returns the method name used to call this method.
        Returns:
        method
      • getFlags

        public int getFlags()
        Returns any flags set on this method call.
        Returns:
        flags