INNER CODE UNIT · Java
close
mongodb/mongo-java-driver · bson/src/main/org/bson/AbstractBsonReader.java:93
public void close() {
closed = true;
}
/**
* Return true if the reader has been closed.
*
* @return true if closed
*/
protected boolean isClosed() {
return closed;
}
/**
* Handles the logic to read binary data
*
* @return the BsonBinary value
*/