@@ -463,10 +463,9 @@ <T extends R> T read(DocumentDescriptor desc, DocumentMetadataReadHandle metadat
463463 * server via getServerTimestamp() on any handle.
464464 * @param uris the database uris identifying documents to retrieve
465465 * @return the DocumentPage of matching documents and metadata
466+ * @since 6.4.1
466467 */
467- /* Hide the following for now because the API isn't yet fully fleshed-out
468468 DocumentPage read (long serverTimestamp , String ... uris );
469- */
470469
471470 /**
472471 * Reads from the database a list of documents matching the provided uris. Allows
@@ -492,10 +491,9 @@ <T extends R> T read(DocumentDescriptor desc, DocumentMetadataReadHandle metadat
492491 * @param transform the transform to be run on the server on each document (must already be installed)
493492 * @param uris the database uris identifying documents to retrieve
494493 * @return the DocumentPage of matching documents and metadata
494+ * @since 6.4.1
495495 */
496- /* Hide the following for now because the API isn't yet fully fleshed-out
497496 DocumentPage read (long serverTimestamp , ServerTransform transform , String ... uris );
498- */
499497
500498 /**
501499 * Reads from the database a list of documents matching the provided uris. Allows
@@ -509,23 +507,6 @@ <T extends R> T read(DocumentDescriptor desc, DocumentMetadataReadHandle metadat
509507 */
510508 DocumentPage read (Transaction transaction , String ... uris );
511509
512- /**
513- * Reads from the database a list of documents matching the provided uris. Allows
514- * iteration across matching documents and metadata (only if setMetadataCategories
515- * has been called to request metadata). To find out how many of your uris matched,
516- * call the {@link DocumentPage#size() DocumentPage.size()} method.
517- *
518- * @param serverTimestamp the point in time at which to read these
519- * documents. The value must be a merge timestamp obtained from the
520- * server via getServerTimestamp() on any handle.
521- * @param transaction the transaction in which this read is participating
522- * @param uris the database uris identifying documents to retrieve
523- * @return the DocumentPage of matching documents and metadata
524- */
525- /* Hide the following for now because the API isn't yet fully fleshed-out
526- DocumentPage read(long serverTimestamp, Transaction transaction, String... uris);
527- */
528-
529510 /**
530511 * Reads from the database a list of documents matching the provided uris. Allows
531512 * iteration across matching documents and metadata (only if setMetadataCategories
@@ -539,24 +520,6 @@ <T extends R> T read(DocumentDescriptor desc, DocumentMetadataReadHandle metadat
539520 */
540521 DocumentPage read (ServerTransform transform , Transaction transaction , String ... uris );
541522
542- /**
543- * Reads from the database a list of documents matching the provided uris. Allows
544- * iteration across matching documents and metadata (only if setMetadataCategories
545- * has been called to request metadata). To find out how many of your uris matched,
546- * call the {@link DocumentPage#size() DocumentPage.size()} method.
547- *
548- * @param serverTimestamp the point in time at which to read these
549- * documents. The value must be a merge timestamp obtained from the
550- * server via getServerTimestamp() on any handle.
551- * @param transform the transform to be run on the server on each document (must already be installed)
552- * @param transaction the transaction in which this read is participating
553- * @param uris the database uris identifying documents to retrieve
554- * @return the DocumentPage of matching documents and metadata
555- */
556- /* Hide the following for now because the API isn't yet fully fleshed-out
557- DocumentPage read(long serverTimestamp, ServerTransform transform, Transaction transaction, String... uris);
558- */
559-
560523 /**
561524 * Reads from the database the metadata for a list of documents matching the
562525 * provided uris. Allows iteration across the metadata for matching documents
@@ -619,10 +582,9 @@ <T extends R> T read(DocumentDescriptor desc, DocumentMetadataReadHandle metadat
619582 * documents. The value must be a merge timestamp obtained from the
620583 * server via getServerTimestamp() on any handle.
621584 * @return the DocumentPage of matching documents and metadata
585+ * @since 6.4.1
622586 */
623- /* Hide the following for now because the API isn't yet fully fleshed-out
624587 DocumentPage search (SearchQueryDefinition querydef , long start , long serverTimestamp );
625- */
626588
627589 /**
628590 * Just like {@link QueryManager#search(SearchQueryDefinition, SearchReadHandle, long, Transaction) QueryManager.search}
0 commit comments