Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. methodCallMember :: MethodCall -> MemberName

    dbus DBus

    The method name of the method call. Method names are unique within an interface, but might not be unique within an object.

  2. methodCallPath :: MethodCall -> ObjectPath

    dbus DBus

    The object path of the method call. Conceptually, object paths act like a procedural language's pointers. Each object referenced by a path is a collection of procedures.

  3. methodCallReplyExpected :: MethodCall -> Bool

    dbus DBus

    Set whether a reply is expected. This can save network and cpu resources by inhibiting unnecessary replies. Defaults to True.

  4. methodCallSender :: MethodCall -> Maybe BusName

    dbus DBus

    The name of the application that sent this call. Most users will just leave this empty, because the bus overwrites the sender for security reasons. Setting the sender manually is used for peer-peer connections. Defaults to Nothing.

  5. call :: Client -> MethodCall -> IO (Either MethodError MethodReturn)

    dbus DBus.Client

    Send a method call to the bus, and wait for the response. Throws a ClientError if the method call couldn't be sent, or if the reply couldn't be parsed.

  6. callNoReply :: Client -> MethodCall -> IO ()

    dbus DBus.Client

    Send a method call to the bus, and do not wait for a response. Sets the noReplyExpected message flag before sending. Throws a ClientError if the method call couldn't be sent.

  7. call_ :: Client -> MethodCall -> IO MethodReturn

    dbus DBus.Client

    Send a method call to the bus, and wait for the response. Unsets the noReplyExpected message flag before sending. Throws a ClientError if the method call couldn't sent, if the reply couldn't be parsed, or if the reply was a MethodError.

  8. clientPendingCalls :: Client -> IORef (Map Serial (MVar (Either MethodError MethodReturn)))

    dbus DBus.Client

    No documentation available.

  9. getAllProperties :: Client -> MethodCall -> IO (Either MethodError MethodReturn)

    dbus DBus.Client

    No documentation available.

  10. getAllPropertiesMap :: Client -> MethodCall -> IO (Either MethodError (Map String Variant))

    dbus DBus.Client

    No documentation available.

Page 668 of many | Previous | Next