Interface ListCollectionsIterable<TResult>

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

    Deprecated. 
    Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)

    @Deprecated
    public interface ListCollectionsIterable<TResult>
    extends MongoIterable<TResult>
    Iterable for ListCollections.
    Since:
    3.0
    • Method Detail

      • filter

        ListCollectionsIterable<TResult> filter​(@Nullable
                                                org.bson.conversions.Bson filter)
        Deprecated. 
        Sets the query filter to apply to the query.
        Parameters:
        filter - the filter, which may be null.
        Returns:
        this
        MongoDB documentation
        Filter
      • maxTime

        ListCollectionsIterable<TResult> maxTime​(long maxTime,
                                                 TimeUnit timeUnit)
        Deprecated. 
        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