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.
methodCallMember :: MethodCall -> MemberNamedbus DBus The method name of the method call. Method names are unique within an interface, but might not be unique within an object.
methodCallPath :: MethodCall -> ObjectPathdbus 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.
methodCallReplyExpected :: MethodCall -> Booldbus DBus Set whether a reply is expected. This can save network and cpu resources by inhibiting unnecessary replies. Defaults to True.
methodCallSender :: MethodCall -> Maybe BusNamedbus 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.
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.
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.
call_ :: Client -> MethodCall -> IO MethodReturndbus 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.
clientPendingCalls :: Client -> IORef (Map Serial (MVar (Either MethodError MethodReturn)))dbus DBus.Client No documentation available.
getAllProperties :: Client -> MethodCall -> IO (Either MethodError MethodReturn)dbus DBus.Client No documentation available.
getAllPropertiesMap :: Client -> MethodCall -> IO (Either MethodError (Map String Variant))dbus DBus.Client No documentation available.