Package org.msgpack.io

Examples of org.msgpack.io.StreamInput


    public MessagePackUnpacker(InputStream stream) {
        this(new MessagePack(), stream);
    }

    public MessagePackUnpacker(MessagePack msgpack, InputStream stream) {
        this(msgpack, new StreamInput(stream));
    }
View Full Code Here

TOP

Related Classes of org.msgpack.io.StreamInput

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.