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

org.litote.kmongo.MongoDatabasesWithClientSession.kt Maven / Gradle / Ivy

There is a newer version: 5.1.0
Show newest version
/*
 * Copyright (C) 2016/2020 Litote
 *
 * 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 org.litote.kmongo

import com.mongodb.ReadPreference
import com.mongodb.client.ClientSession
import com.mongodb.client.MongoDatabase
import org.litote.kmongo.util.KMongoUtil

/**
 * Executes the given command in the context of the current database with the given read preference.
 *
 * @param clientSession the client session with which to associate this operation
 * @param command        the command to be run
 * @param readPreference the {@link com.mongodb.ReadPreference} to be used when executing the command
 * @param       the type of the class to use instead of {@code Document}.
 */
inline fun  MongoDatabase.runCommand(
    clientSession: ClientSession,
    command: String,
    readPreference: ReadPreference
): TResult =
    runCommand(KMongoUtil.toBson(command), readPreference, TResult::class.java)

/**
 * Executes the given command in the context of the current database with the given read preference.
 *
 * @param clientSession the client session with which to associate this operation
 * @param command        the command to be run
 * @param       the type of the class to use instead of {@code Document}.
 */
inline fun  MongoDatabase.runCommand(clientSession: ClientSession, command: String): TResult =
    runCommand(command, readPreference)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy