Class EstimatedDocumentCountOptions

java.lang.Object
com.mongodb.client.model.EstimatedDocumentCountOptions

public class EstimatedDocumentCountOptions extends Object
The options an estimated count operation.
Since:
3.8
MongoDB documentation
Count
  • Constructor Details

    • EstimatedDocumentCountOptions

      public EstimatedDocumentCountOptions()
  • Method Details

    • getMaxTime

      public long getMaxTime(TimeUnit timeUnit)
      Gets the maximum execution time on the server for this operation. The default is 0, which places no limit on the execution time.
      Parameters:
      timeUnit - the time unit to return the result in
      Returns:
      the maximum execution time in the given time unit
    • maxTime

      public EstimatedDocumentCountOptions 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
    • toString

      public String toString()
      Overrides:
      toString in class Object