public MessagePackParser(IOContext ctxt, int features, InputStream in) throws IOException {
this(ctxt, features, new InputStreamBufferInput(in));
}
public MessagePackParser(IOContext ctxt, int features, byte[] bytes) throws IOException {
this(ctxt, features, new ArrayBufferInput(bytes));
}