com.mongodb.internal.connection.InternalConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-core Show documentation
Show all versions of mongodb-driver-core Show documentation
The Java operations layer for the MongoDB Java Driver. Third parties can ' +
'wrap this layer to provide custom higher-level APIs
/*
* 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.async.SingleResultCallback;
import com.mongodb.connection.BufferProvider;
import com.mongodb.connection.ConnectionDescription;
import com.mongodb.session.SessionContext;
import org.bson.ByteBuf;
import org.bson.codecs.Decoder;
import java.util.List;
public interface InternalConnection extends BufferProvider {
/**
* Gets the description of this connection.
*
* @return the connection description
*/
ConnectionDescription getDescription();
/**
* Opens the connection so its ready for use
*/
void open();
/**
* Opens the connection so its ready for use
*
* @param callback the callback to be called once the connection has been opened
*/
void openAsync(SingleResultCallback callback);
/**
* Closes the connection.
*/
void close();
/**
* Returns if the connection has been opened
*
* @return true if connection has been opened
*/
boolean opened();
/**
* Returns the closed state of the connection
*
* @return true if connection is closed
*/
boolean isClosed();
/**
* Send a command message to the server.
*
* @param message the command message to send
* @param sessionContext the session context
*/
T sendAndReceive(CommandMessage message, Decoder decoder, SessionContext sessionContext);
/**
* Send a command message to the server.
*
* @param message the command message to send
* @param sessionContext the session context
* @param callback the callback
*/
void sendAndReceiveAsync(CommandMessage message, Decoder decoder, SessionContext sessionContext,
SingleResultCallback callback);
/**
* Send a message to the server. The connection may not make any attempt to validate the integrity of the message.
*
* @param byteBuffers the list of byte buffers to send.
* @param lastRequestId the request id of the last message in byteBuffers
*/
void sendMessage(List byteBuffers, int lastRequestId);
/**
* Receive a response to a sent message from the server.
*
* @param responseTo the request id that this message is a response to
* @return the response
*/
ResponseBuffers receiveMessage(int responseTo);
/**
* Asynchronously send a message to the server. The connection may not make any attempt to validate the integrity of the message.
*
* @param byteBuffers the list of byte buffers to send
* @param lastRequestId the request id of the last message in byteBuffers
* @param callback the callback to invoke on completion
*/
void sendMessageAsync(List byteBuffers, int lastRequestId, SingleResultCallback callback);
/**
* Asynchronously receive a response to a sent message from the server.
*
* @param responseTo the request id that this message is a response to
* @param callback the callback to invoke on completion
*/
void receiveMessageAsync(int responseTo, SingleResultCallback callback);
}