@@ -463,10 +463,9 @@ <T extends R> T read(DocumentDescriptor desc, DocumentMetadataReadHandle metadat
463
463
* server via getServerTimestamp() on any handle.
464
464
* @param uris the database uris identifying documents to retrieve
465
465
* @return the DocumentPage of matching documents and metadata
466
+ * @since 6.4.1
466
467
*/
467
- /* Hide the following for now because the API isn't yet fully fleshed-out
468
468
DocumentPage read (long serverTimestamp , String ... uris );
469
- */
470
469
471
470
/**
472
471
* 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
492
491
* @param transform the transform to be run on the server on each document (must already be installed)
493
492
* @param uris the database uris identifying documents to retrieve
494
493
* @return the DocumentPage of matching documents and metadata
494
+ * @since 6.4.1
495
495
*/
496
- /* Hide the following for now because the API isn't yet fully fleshed-out
497
496
DocumentPage read (long serverTimestamp , ServerTransform transform , String ... uris );
498
- */
499
497
500
498
/**
501
499
* 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
509
507
*/
510
508
DocumentPage read (Transaction transaction , String ... uris );
511
509
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
-
529
510
/**
530
511
* Reads from the database a list of documents matching the provided uris. Allows
531
512
* iteration across matching documents and metadata (only if setMetadataCategories
@@ -539,24 +520,6 @@ <T extends R> T read(DocumentDescriptor desc, DocumentMetadataReadHandle metadat
539
520
*/
540
521
DocumentPage read (ServerTransform transform , Transaction transaction , String ... uris );
541
522
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
-
560
523
/**
561
524
* Reads from the database the metadata for a list of documents matching the
562
525
* provided uris. Allows iteration across the metadata for matching documents
@@ -619,10 +582,9 @@ <T extends R> T read(DocumentDescriptor desc, DocumentMetadataReadHandle metadat
619
582
* documents. The value must be a merge timestamp obtained from the
620
583
* server via getServerTimestamp() on any handle.
621
584
* @return the DocumentPage of matching documents and metadata
585
+ * @since 6.4.1
622
586
*/
623
- /* Hide the following for now because the API isn't yet fully fleshed-out
624
587
DocumentPage search (SearchQueryDefinition querydef , long start , long serverTimestamp );
625
- */
626
588
627
589
/**
628
590
* Just like {@link QueryManager#search(SearchQueryDefinition, SearchReadHandle, long, Transaction) QueryManager.search}
0 commit comments