All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mongodb.async.client.MongoClient Maven / Gradle / Ivy

There is a newer version: 3.12.14
Show newest version
/*
 * Copyright 2008-present MongoDB, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.mongodb.async.client;

import com.mongodb.ClientSessionOptions;
import com.mongodb.annotations.Immutable;
import com.mongodb.async.SingleResultCallback;
import org.bson.Document;
import org.bson.conversions.Bson;

import java.io.Closeable;
import java.util.List;

/**
 * A client-side representation of a MongoDB cluster.  Instances can represent either a standalone MongoDB instance, a replica set,
 * or a sharded cluster.  Instance of this class are responsible for maintaining an up-to-date state of the cluster,
 * and possibly cache resources related to this, including background threads for monitoring, and connection pools.
 * 

* Instance of this class serve as factories for {@code MongoDatabase} instances. *

* @since 3.0 * @deprecated Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId) */ @Immutable @Deprecated public interface MongoClient extends Closeable { /** * Creates a client session with default options. * *

Note: A ClientSession instance can not be used concurrently in multiple asynchronous operations.

* * @param callback the callback that is passed the clientSession or a {@code MongoClientException} if the MongoDB cluster to which * this client is connected does not support sessions * @mongodb.server.release 3.6 * @since 3.8 */ void startSession(SingleResultCallback callback); /** * Creates a client session. * *

Note: A ClientSession instance can not be used concurrently in multiple asynchronous operations.

* * @param options the options for the client session * @param callback the callback that is passed the clientSession or a {@code MongoClientException} if the MongoDB cluster to which * this client is connected does not support sessions * @mongodb.server.release 3.6 * @since 3.6 */ void startSession(ClientSessionOptions options, SingleResultCallback callback); /** * Gets the database with the given name. * * @param name the name of the database * @return the database * @throws IllegalArgumentException if databaseName is invalid * @see com.mongodb.MongoNamespace#checkDatabaseNameValidity(String) */ MongoDatabase getDatabase(String name); /** * Close the client, which will close all underlying cached resources, including, for example, * sockets and background monitoring threads. */ void close(); /** * Gets the settings that this client uses to connect to server. * *

Note: {@link MongoClientSettings} is immutable.

* * @return the settings * @deprecated this method is being removed */ @Deprecated MongoClientSettings getSettings(); /** * Get a list of the database names * * @return an iterable containing all the names of all the databases * @mongodb.driver.manual reference/command/listDatabases List Databases */ MongoIterable listDatabaseNames(); /** * Get a list of the database names * * @param clientSession the client session with which to associate this operation * @return an iterable containing all the names of all the databases * @mongodb.driver.manual reference/command/listDatabases List Databases * @since 3.6 * @mongodb.server.release 3.6 */ MongoIterable listDatabaseNames(ClientSession clientSession); /** * Gets the list of databases * * @return the list databases iterable interface */ ListDatabasesIterable listDatabases(); /** * Gets the list of databases * * @param clientSession the client session with which to associate this operation * @return the list databases iterable interface * @mongodb.driver.manual reference/command/listDatabases List Databases * @since 3.6 * @mongodb.server.release 3.6 */ ListDatabasesIterable listDatabases(ClientSession clientSession); /** * Gets the list of databases * * @param resultClass the class to cast the database documents to * @param the type of the class to use instead of {@code Document}. * @return the list databases iterable interface */ ListDatabasesIterable listDatabases(Class resultClass); /** * Gets the list of databases * * @param clientSession the client session with which to associate this operation * @param resultClass the class to cast the database documents to * @param the type of the class to use instead of {@code Document}. * @return the list databases iterable interface * @mongodb.driver.manual reference/command/listDatabases List Databases * @since 3.6 * @mongodb.server.release 3.6 */ ListDatabasesIterable listDatabases(ClientSession clientSession, Class resultClass); /** * Creates a change stream for this client. * * @return the change stream iterable * @mongodb.driver.dochub core/changestreams Change Streams * @since 3.8 * @mongodb.server.release 4.0 */ ChangeStreamIterable watch(); /** * Creates a change stream for this client. * * @param resultClass the class to decode each document into * @param the target document type of the iterable. * @return the change stream iterable * @mongodb.driver.dochub core/changestreams Change Streams * @since 3.8 * @mongodb.server.release 4.0 */ ChangeStreamIterable watch(Class resultClass); /** * Creates a change stream for this client. * * @param pipeline the aggregation pipeline to apply to the change stream. * @return the change stream iterable * @mongodb.driver.dochub core/changestreams Change Streams * @since 3.8 * @mongodb.server.release 4.0 */ ChangeStreamIterable watch(List pipeline); /** * Creates a change stream for this client. * * @param pipeline the aggregation pipeline to apply to the change stream * @param resultClass the class to decode each document into * @param the target document type of the iterable. * @return the change stream iterable * @mongodb.driver.dochub core/changestreams Change Streams * @since 3.8 * @mongodb.server.release 4.0 */ ChangeStreamIterable watch(List pipeline, Class resultClass); /** * Creates a change stream for this client. * * @param clientSession the client session with which to associate this operation * @return the change stream iterable * @since 3.8 * @mongodb.server.release 4.0 * @mongodb.driver.dochub core/changestreams Change Streams */ ChangeStreamIterable watch(ClientSession clientSession); /** * Creates a change stream for this client. * * @param clientSession the client session with which to associate this operation * @param resultClass the class to decode each document into * @param the target document type of the iterable. * @return the change stream iterable * @since 3.8 * @mongodb.server.release 4.0 * @mongodb.driver.dochub core/changestreams Change Streams */ ChangeStreamIterable watch(ClientSession clientSession, Class resultClass); /** * Creates a change stream for this client. * * @param clientSession the client session with which to associate this operation * @param pipeline the aggregation pipeline to apply to the change stream. * @return the change stream iterable * @since 3.8 * @mongodb.server.release 4.0 * @mongodb.driver.dochub core/changestreams Change Streams */ ChangeStreamIterable watch(ClientSession clientSession, List pipeline); /** * Creates a change stream for this client. * * @param clientSession the client session with which to associate this operation * @param pipeline the aggregation pipeline to apply to the change stream * @param resultClass the class to decode each document into * @param the target document type of the iterable. * @return the change stream iterable * @since 3.8 * @mongodb.server.release 4.0 * @mongodb.driver.dochub core/changestreams Change Streams */ ChangeStreamIterable watch(ClientSession clientSession, List pipeline, Class resultClass); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy