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

com.mongodb.connection.Connection Maven / Gradle / Ivy

Go to download

The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson

There is a newer version: 3.12.14
Show newest version
/*
 * Copyright 2013-2015 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.connection;

import com.mongodb.MongoNamespace;
import com.mongodb.WriteConcern;
import com.mongodb.WriteConcernResult;
import com.mongodb.annotations.ThreadSafe;
import com.mongodb.binding.ReferenceCounted;
import com.mongodb.bulk.BulkWriteResult;
import com.mongodb.bulk.DeleteRequest;
import com.mongodb.bulk.InsertRequest;
import com.mongodb.bulk.UpdateRequest;
import org.bson.BsonDocument;
import org.bson.FieldNameValidator;
import org.bson.codecs.Decoder;

import java.util.List;


/**
 * A synchronous connection to a MongoDB server with blocking operations.
 *
 * 

Implementations of this class are thread safe.

* *

This interface is not stable. While methods will not be removed, new ones may be added.

* * @since 3.0 */ @ThreadSafe public interface Connection extends ReferenceCounted { @Override Connection retain(); /** * Gets the description of the connection. * * @return the connection description */ ConnectionDescription getDescription(); /** * Insert the documents using the insert wire protocol and apply the write concern. * * @param namespace the namespace * @param ordered whether the writes are ordered * @param writeConcern the write concern * @param inserts the inserts * @return the write concern result */ WriteConcernResult insert(MongoNamespace namespace, boolean ordered, WriteConcern writeConcern, List inserts); /** * Update the documents using the update wire protocol and apply the write concern. * * @param namespace the namespace * @param ordered whether the writes are ordered * @param writeConcern the write concern * @param updates the updates * @return the write concern result */ WriteConcernResult update(MongoNamespace namespace, boolean ordered, WriteConcern writeConcern, List updates); /** * Delete the documents using the delete wire protocol and apply the write concern. * * @param namespace the namespace * @param ordered whether the writes are ordered * @param writeConcern the write concern * @param deletes the deletes * @return the write concern result */ WriteConcernResult delete(MongoNamespace namespace, boolean ordered, WriteConcern writeConcern, List deletes); /** * Insert the documents using the insert command. * * @param namespace the namespace * @param ordered whether the writes are ordered * @param writeConcern the write concern * @param inserts the inserts * @return the bulk write result * @deprecated Replaced by {@link Connection#insertCommand(MongoNamespace, boolean, WriteConcern, Boolean, List)} */ @Deprecated BulkWriteResult insertCommand(MongoNamespace namespace, boolean ordered, WriteConcern writeConcern, List inserts); /** * Insert the documents using the insert command. * * @param namespace the namespace * @param ordered whether the writes are ordered * @param writeConcern the write concern * @param bypassDocumentValidation the bypassDocumentValidation flag * @param inserts the inserts * @return the bulk write result * @since 3.2 * @mongodb.driver.manual reference/command/insert/ Insert */ BulkWriteResult insertCommand(MongoNamespace namespace, boolean ordered, WriteConcern writeConcern, Boolean bypassDocumentValidation, List inserts); /** * Update the documents using the update command. * * @param namespace the namespace * @param ordered whether the writes are ordered * @param writeConcern the write concern * @param updates the updates * @return the bulk write result * @deprecated Replaced by {@link Connection#updateCommand(MongoNamespace, boolean, WriteConcern, Boolean, List)}} */ @Deprecated BulkWriteResult updateCommand(MongoNamespace namespace, boolean ordered, WriteConcern writeConcern, List updates); /** * Update the documents using the update command. * * @param namespace the namespace * @param ordered whether the writes are ordered * @param writeConcern the write concern * @param bypassDocumentValidation the bypassDocumentValidation flag * @param updates the updates * @return the bulk write result * @since 3.2 * @mongodb.driver.manual reference/command/update/ Update */ BulkWriteResult updateCommand(MongoNamespace namespace, boolean ordered, WriteConcern writeConcern, Boolean bypassDocumentValidation, List updates); /** * Delete the documents using the delete command. * * @param namespace the namespace * @param ordered whether the writes are ordered * @param writeConcern the write concern * @param deletes the deletes * @return the bulk write result */ BulkWriteResult deleteCommand(MongoNamespace namespace, boolean ordered, WriteConcern writeConcern, List deletes); /** * Execute the command. * * @param database the database to execute the command in * @param command the command document * @param slaveOk whether the command can run on a secondary * @param fieldNameValidator the field name validator for the command document * @param commandResultDecoder the decoder for the result * @param the type of the result * @return the command result */ T command(String database, BsonDocument command, boolean slaveOk, FieldNameValidator fieldNameValidator, Decoder commandResultDecoder); /** * Execute the query. * * @param namespace the namespace to query * @param queryDocument the query document * @param fields the field to include or exclude * @param numberToReturn the number of documents to return * @param skip the number of documents to skip * @param slaveOk whether the query can run on a secondary * @param tailableCursor whether to return a tailable cursor * @param awaitData whether a tailable cursor should wait before returning if no documents are available * @param noCursorTimeout whether the cursor should not timeout * @param partial whether partial results from sharded clusters are acceptable * @param oplogReplay whether to replay the oplog * @param resultDecoder the decoder for the query result documents * @param the query result document type * @return the query results * @deprecated Replaced by {@link #query(MongoNamespace, BsonDocument, BsonDocument, int, int, int, boolean, boolean, boolean, * boolean, boolean, boolean, Decoder)} */ @Deprecated QueryResult query(MongoNamespace namespace, BsonDocument queryDocument, BsonDocument fields, int numberToReturn, int skip, boolean slaveOk, boolean tailableCursor, boolean awaitData, boolean noCursorTimeout, boolean partial, boolean oplogReplay, Decoder resultDecoder); /** * Execute the query. * * @param namespace the namespace to query * @param queryDocument the query document * @param fields the field to include or exclude * @param skip the number of documents to skip * @param limit the maximum number of documents to return in all batches * @param batchSize the maximum number of documents to return in this batch * @param slaveOk whether the query can run on a secondary * @param tailableCursor whether to return a tailable cursor * @param awaitData whether a tailable cursor should wait before returning if no documents are available * @param noCursorTimeout whether the cursor should not timeout * @param partial whether partial results from sharded clusters are acceptable * @param oplogReplay whether to replay the oplog * @param resultDecoder the decoder for the query result documents * @param the query result document type * @return the query results * * @since 3.1 */ QueryResult query(MongoNamespace namespace, BsonDocument queryDocument, BsonDocument fields, int skip, int limit, int batchSize, boolean slaveOk, boolean tailableCursor, boolean awaitData, boolean noCursorTimeout, boolean partial, boolean oplogReplay, Decoder resultDecoder); /** * Get more result documents from a cursor. * * @param namespace the namespace to get more documents from * @param cursorId the cursor id * @param numberToReturn the number of documents to return * @param resultDecoder the decoder for the query results * @param the type of the query result documents * @return the query results */ QueryResult getMore(MongoNamespace namespace, long cursorId, int numberToReturn, Decoder resultDecoder); /** * Kills the given list of cursors. * * @param cursors the cursors * @deprecated Replaced by {@link #killCursor(MongoNamespace, List)} */ @Deprecated void killCursor(List cursors); /** * Kills the given list of cursors. * * @param namespace the namespace to in which the cursors live * @param cursors the cursors */ void killCursor(MongoNamespace namespace, List cursors); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy