ReadingDeserializer
A JVM-only Deserializer that can also read directly from a Reader (e.g. a file or network stream), avoiding the need to first buffer the whole input into a String. The String-based deserialize/deserializeMany methods of Deserializer are implemented in terms of the Reader-based ones, by wrapping the string in a StringReader.
Type Parameters
T
the type of values this deserializer can produce.