Interface ListCollectionNamesPublisher

All Superinterfaces:
Publisher<String>

public interface ListCollectionNamesPublisher extends Publisher<String>
Publisher for listing collection names.
Since:
5.0
MongoDB documentation
listCollections
  • Method Details

    • filter

      Sets the query filter to apply to the query.
      Parameters:
      filter - the filter, which may be null.
      Returns:
      this
      MongoDB documentation
      Filter
    • maxTime

      ListCollectionNamesPublisher maxTime(long maxTime, TimeUnit timeUnit)
      Sets the maximum execution time on the server for this operation.
      Parameters:
      maxTime - the max time
      timeUnit - the time unit, which may not be null
      Returns:
      this
      MongoDB documentation
      Max Time
    • batchSize

      ListCollectionNamesPublisher batchSize(int batchSize)
      Sets the number of documents to return per batch.

      Overrides the Subscription.request(long) value for setting the batch size, allowing for fine-grained control over the underlying cursor.

      Parameters:
      batchSize - the batch size
      Returns:
      this
      MongoDB documentation
      Batch Size
    • comment

      Sets the comment for this operation. A null value means no comment is set.
      Parameters:
      comment - the comment
      Returns:
      this
      Since server release
      4.4
    • comment

      Sets the comment for this operation. A null value means no comment is set.
      Parameters:
      comment - the comment
      Returns:
      this
      Since server release
      4.4
    • first

      Publisher<String> first()
      Helper to return a publisher limited to the first result.
      Returns:
      a Publisher which will contain a single item.
    • authorizedCollections

      ListCollectionNamesPublisher authorizedCollections(boolean authorizedCollections)
      Sets the authorizedCollections field of the listCollections command.
      Parameters:
      authorizedCollections - If true, allows executing the listCollections command, which has the nameOnly field set to true, without having the listCollections privilege on the database resource.
      Returns:
      this.
      Since server release
      4.0