* @see org.apache.jackrabbit.oak.plugins.document.mongo.MongoBlobReferenceIterator
* @return an iterator for all the blobs
*/
public Iterator<Blob> getReferencedBlobsIterator() {
if(store instanceof MongoDocumentStore){
return new MongoBlobReferenceIterator(this, (MongoDocumentStore) store);
}
return new BlobReferenceIterator(this);
}