return tmpl.read(new MessagePackUnpacker(globalMessagePack, in), null);
}
@Deprecated
public static <T> T unpack(InputStream in, Template<T> tmpl, T to) throws IOException, MessageTypeException {
return (T) tmpl.read(new MessagePackUnpacker(globalMessagePack, in), to);
}