/*
* 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.internal.connection;
import com.mongodb.MongoNamespace;
import com.mongodb.ReadPreference;
import com.mongodb.WriteConcernResult;
import com.mongodb.annotations.ThreadSafe;
import com.mongodb.connection.ConnectionDescription;
import com.mongodb.internal.binding.ReferenceCounted;
import com.mongodb.internal.bulk.DeleteRequest;
import com.mongodb.internal.bulk.InsertRequest;
import com.mongodb.internal.bulk.UpdateRequest;
import com.mongodb.internal.session.SessionContext;
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
/**
* A synchronous connection to a MongoDB server with blocking operations.
*
* <p> Implementations of this class are thread safe. </p>
*
* <p> This interface is not stable. While methods will not be removed, new ones may be added. </p>
*
* @since 3.0
*/
@ThreadSafe
public interface Connection extends ReferenceCounted {
@Override
Connection retain();
Gets the description of the connection.
Returns: the connection description
/**
* 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.
Params: - namespace – the namespace
- ordered – whether the writes are ordered
- insertRequest – the insert request
Returns: the write concern result
/**
* 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 insertRequest the insert request
* @return the write concern result
*/
WriteConcernResult insert(MongoNamespace namespace, boolean ordered, InsertRequest insertRequest);
Update the documents using the update wire protocol and apply the write concern.
Params: - namespace – the namespace
- ordered – whether the writes are ordered
- updateRequest – the update request
Returns: the write concern result
/**
* 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 updateRequest the update request
* @return the write concern result
*/
WriteConcernResult update(MongoNamespace namespace, boolean ordered, UpdateRequest updateRequest);
Delete the documents using the delete wire protocol and apply the write concern.
Params: - namespace – the namespace
- ordered – whether the writes are ordered
- deleteRequest – the delete request
Returns: the write concern result
/**
* 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 deleteRequest the delete request
* @return the write concern result
*/
WriteConcernResult delete(MongoNamespace namespace, boolean ordered, DeleteRequest deleteRequest);
Execute the command.
Params: - database – the database to execute the command in
- command – the command document
- fieldNameValidator – the field name validator for the command document
- readPreference – the read preference that was applied to get this connection, or null if this is a write operation
- commandResultDecoder – the decoder for the result
- sessionContext – the session context
Type parameters: - <T> – the type of the result
Returns: the command result Since: 3.6
/**
* Execute the command.
*
* @param <T> the type of the result
* @param database the database to execute the command in
* @param command the command document
* @param fieldNameValidator the field name validator for the command document
* @param readPreference the read preference that was applied to get this connection, or null if this is a write operation
* @param commandResultDecoder the decoder for the result
* @param sessionContext the session context
* @return the command result
* @since 3.6
*/
<T> T command(String database, BsonDocument command, FieldNameValidator fieldNameValidator, ReadPreference readPreference,
Decoder<T> commandResultDecoder, SessionContext sessionContext);
Executes the command, consuming as much of the SplittablePayload
as possible. Params: - database – the database to execute the command in
- command – the command document
- commandFieldNameValidator – the field name validator for the command document
- readPreference – the read preference that was applied to get this connection, or null if this is a write operation
- commandResultDecoder – the decoder for the result
- sessionContext – the session context
- responseExpected – true if a response from the server is expected
- payload – the splittable payload to incorporate with the command
- payloadFieldNameValidator – the field name validator for the payload documents
Type parameters: - <T> – the type of the result
Returns: the command result Since: 3.6
/**
* Executes the command, consuming as much of the {@code SplittablePayload} as possible.
*
* @param <T> the type of the result
* @param database the database to execute the command in
* @param command the command document
* @param commandFieldNameValidator the field name validator for the command document
* @param readPreference the read preference that was applied to get this connection, or null if this is a write operation
* @param commandResultDecoder the decoder for the result
* @param sessionContext the session context
* @param responseExpected true if a response from the server is expected
* @param payload the splittable payload to incorporate with the command
* @param payloadFieldNameValidator the field name validator for the payload documents
* @return the command result
* @since 3.6
*/
<T> T command(String database, BsonDocument command, FieldNameValidator commandFieldNameValidator, ReadPreference readPreference,
Decoder<T> commandResultDecoder, SessionContext sessionContext, boolean responseExpected,
SplittablePayload payload, FieldNameValidator payloadFieldNameValidator);
Execute the query.
Params: - namespace – the namespace to query
- queryDocument – the query document
- fields – the field to include or exclude
- skip – the number of documents to skip
- limit – the maximum number of documents to return in all batches
- batchSize – the maximum number of documents to return in this batch
- slaveOk – whether the query can run on a secondary
- tailableCursor – whether to return a tailable cursor
- awaitData – whether a tailable cursor should wait before returning if no documents are available
- noCursorTimeout – whether the cursor should not timeout
- partial – whether partial results from sharded clusters are acceptable
- oplogReplay – whether to replay the oplog
- resultDecoder – the decoder for the query result documents
Type parameters: - <T> – the query result document type
Returns: the query results Since: 3.1
/**
* 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 <T> the query result document type
* @return the query results
*
* @since 3.1
*/
<T> QueryResult<T> 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<T> resultDecoder);
Get more result documents from a cursor.
Params: - namespace – the namespace to get more documents from
- cursorId – the cursor id
- numberToReturn – the number of documents to return
- resultDecoder – the decoder for the query results
Type parameters: - <T> – the type of the query result documents
Returns: the query results
/**
* 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 <T> the type of the query result documents
* @return the query results
*/
<T> QueryResult<T> getMore(MongoNamespace namespace, long cursorId, int numberToReturn, Decoder<T> resultDecoder);
Kills the given list of cursors.
Params: - namespace – the namespace to in which the cursors live
- cursors – the 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<Long> cursors);
}