msgpack-0.2.2: A Haskell binding to MessagePack

Copyright(c) Hideyuki Tanaka, 2009
LicenseBSD3
Maintainer[email protected]
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell98

Data.MessagePack.Stream

Description

Lazy Stream Serializers and Deserializers

Synopsis

Documentation

unpackObjects :: Feeder -> IO [Object] Source

Unpack objects using given feeder.

unpackObjectsFromFile :: FilePath -> IO [Object] Source

Unpack objects from file.

unpackObjectsFromHandle :: Handle -> IO [Object] Source

Unpack objects from handle.

unpackObjectsFromString :: ByteString -> IO [Object] Source

Unpack oobjects from given byte sequence.