Package com.mongodb.client.model
Class EstimatedDocumentCountOptions
- java.lang.Object
-
- com.mongodb.client.model.EstimatedDocumentCountOptions
-
public class EstimatedDocumentCountOptions extends java.lang.ObjectThe options an estimated count operation.- Since:
- 3.8
-
-
Constructor Summary
Constructors Constructor Description EstimatedDocumentCountOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetMaxTime(java.util.concurrent.TimeUnit timeUnit)Gets the maximum execution time on the server for this operation.EstimatedDocumentCountOptionsmaxTime(long maxTime, java.util.concurrent.TimeUnit timeUnit)Sets the maximum execution time on the server for this operation.java.lang.StringtoString()
-
-
-
Method Detail
-
getMaxTime
public long getMaxTime(java.util.concurrent.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, java.util.concurrent.TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.- Parameters:
maxTime- the max timetimeUnit- the time unit, which may not be null- Returns:
- this
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-