Class ListCollectionsOperation<T>

    • Constructor Detail

      • ListCollectionsOperation

        public ListCollectionsOperation​(String databaseName,
                                        Decoder<T> decoder)
        Deprecated. 
        Construct a new instance.
        Parameters:
        databaseName - the name of the database for the operation.
        decoder - the decoder to use for the results
    • Method Detail

      • getFilter

        public BsonDocument getFilter​()
        Deprecated. 
        Gets the query filter.
        Returns:
        the query filter
        MongoDB documentation
        Filter
      • isNameOnly

        public boolean isNameOnly​()
        Deprecated. 
        Gets whether only the collection names should be returned.
        Returns:
        true if only the collection names should be returned
        Since:
        3.8
        Since server release
        4.0
      • filter

        public ListCollectionsOperation<T> filter​(BsonDocument filter)
        Deprecated. 
        Sets the query filter to apply to the query.
        Parameters:
        filter - the filter, which may be null.
        Returns:
        this
        MongoDB documentation
        Filter
      • nameOnly

        public ListCollectionsOperation<T> nameOnly​(boolean nameOnly)
        Deprecated. 
        Sets the query filter to apply to the query.

        Note: this is advisory only, and should be considered an optimization. Server versions prior to MongoDB 4.0 will ignore this request.

        Parameters:
        nameOnly - true if only the collection names should be requested from the server
        Returns:
        this
        Since:
        3.8
        Since server release
        4.0
      • getBatchSize

        public Integer getBatchSize​()
        Deprecated. 
        Gets the number of documents to return per batch.
        Returns:
        the batch size
        MongoDB documentation
        Batch Size
        Since server release
        3.0
      • batchSize

        public ListCollectionsOperation<T> batchSize​(int batchSize)
        Deprecated. 
        Sets the number of documents to return per batch.
        Parameters:
        batchSize - the batch size
        Returns:
        this
        MongoDB documentation
        Batch Size
        Since server release
        3.0
      • getMaxTime

        public long getMaxTime​(TimeUnit timeUnit)
        Deprecated. 
        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
        MongoDB documentation
        Max Time
      • maxTime

        public ListCollectionsOperation<T> 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
      • execute

        public BatchCursor<T> execute​(ReadBinding binding)
        Deprecated. 
        Description copied from interface: ReadOperation
        General execute which can return anything of type T
        Specified by:
        execute in interface ReadOperation<T>
        Parameters:
        binding - the binding to execute in the context of
        Returns:
        T, the result of the execution