Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- encodeMessage :: Message msg => msg -> ByteString
- buildMessage :: Message msg => msg -> Builder
- decodeMessage :: Message msg => ByteString -> Either String msg
- parseMessage :: Message msg => Parser msg
- decodeMessageOrDie :: Message msg => ByteString -> msg
- buildMessageDelimited :: Message msg => msg -> Builder
- parseMessageDelimited :: Message msg => Parser msg
- decodeMessageDelimitedH :: Message msg => Handle -> IO (Either String msg)
Documentation
encodeMessage :: Message msg => msg -> ByteString Source #
Encode a message to the wire format as a strict ByteString
.
buildMessage :: Message msg => msg -> Builder Source #
Encode a message value.
See also the functions in Data.ProtoLens.Encoding.
decodeMessage :: Message msg => ByteString -> Either String msg Source #
Decode a message from its wire format. Returns Left
if the decoding
fails.
parseMessage :: Message msg => Parser msg Source #
Decode a message value.
See also the functions in Data.ProtoLens.Encoding.
decodeMessageOrDie :: Message msg => ByteString -> msg Source #
Decode a message from its wire format. Throws an error if the decoding fails.
Delimited messages
buildMessageDelimited :: Message msg => msg -> Builder Source #
Encode a message to the wire format, prefixed by its size as a VarInt,
as part of a Builder
.
This can be used to build up streams of messages in the size-delimited format expected by some protocols.
parseMessageDelimited :: Message msg => Parser msg Source #