dbus-core-0.8.2: Low-level D-Bus protocol implementation

DBus.Wire

Synopsis

Documentation

marshalMessage :: Message a => Endianness -> Serial -> a -> Either MarshalError ByteStringSource

Convert a Message into a ByteString. Although unusual, it is possible for marshaling to fail -- if this occurs, an appropriate error will be returned instead.

unmarshalMessage :: Monad m => (Word32 -> m ByteString) -> m (Either UnmarshalError ReceivedMessage)Source

Read bytes from a monad until a complete message has been received.