2012201320142015201620172018201920202021
public DBDecoder create() { return this; } @Override public DBObject decode(byte[] b, DBCollection collection) { DBCallback cbk = getDBCallback(collection); cbk.reset(); decode(b, cbk); return (DBObject) cbk.get(); }
2021202220232024202520262027202820292030
} @Override public DBObject decode(InputStream in, DBCollection collection) throws IOException { DBCallback cbk = getDBCallback(collection); cbk.reset(); decode(in, cbk); return (DBObject) cbk.get(); }