Interface ListIndexesPublisher<TResult>

  • Type Parameters:
    TResult - The type of the result.
    All Superinterfaces:
    Publisher<TResult>

    public interface ListIndexesPublisher<TResult>
    extends Publisher<TResult>
    Publisher interface for ListIndexes.
    Since:
    1.0
    • Method Detail

      • maxTime

        ListIndexesPublisher<TResult> 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

        ListIndexesPublisher<TResult> 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
        Since:
        1.8
        MongoDB documentation
        Batch Size
      • first

        Publisher<TResult> first()
        Helper to return a publisher limited to the first result.
        Returns:
        a Publisher which will contain a single item.
        Since:
        1.8