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

com.mongodb.reactivestreams.client.internal.TimeoutHelper Maven / Gradle / Ivy

The 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.reactivestreams.client.internal;

import com.mongodb.MongoOperationTimeoutException;
import com.mongodb.internal.TimeoutContext;
import com.mongodb.internal.time.Timeout;
import com.mongodb.lang.Nullable;
import com.mongodb.reactivestreams.client.MongoCollection;
import com.mongodb.reactivestreams.client.MongoDatabase;
import reactor.core.publisher.Mono;

import static java.util.concurrent.TimeUnit.MILLISECONDS;

/**
 * 

This class is not part of the public API and may be removed or changed at any time

*/ public final class TimeoutHelper { private static final String DEFAULT_TIMEOUT_MESSAGE = "Operation exceeded the timeout limit."; private TimeoutHelper() { //NOP } public static MongoCollection collectionWithTimeout(final MongoCollection collection, @Nullable final Timeout timeout) { return collectionWithTimeout(collection, timeout, DEFAULT_TIMEOUT_MESSAGE); } public static MongoCollection collectionWithTimeout(final MongoCollection collection, @Nullable final Timeout timeout, final String message) { if (timeout != null) { return timeout.call(MILLISECONDS, () -> collection.withTimeout(0, MILLISECONDS), ms -> collection.withTimeout(ms, MILLISECONDS), () -> TimeoutContext.throwMongoTimeoutException(message)); } return collection; } public static Mono> collectionWithTimeoutMono(final MongoCollection collection, @Nullable final Timeout timeout) { try { return Mono.just(collectionWithTimeout(collection, timeout)); } catch (MongoOperationTimeoutException e) { return Mono.error(e); } } public static Mono> collectionWithTimeoutDeferred(final MongoCollection collection, @Nullable final Timeout timeout) { return Mono.defer(() -> collectionWithTimeoutMono(collection, timeout)); } public static MongoDatabase databaseWithTimeout(final MongoDatabase database, @Nullable final Timeout timeout) { return databaseWithTimeout(database, DEFAULT_TIMEOUT_MESSAGE, timeout); } public static MongoDatabase databaseWithTimeout(final MongoDatabase database, final String message, @Nullable final Timeout timeout) { if (timeout != null) { return timeout.call(MILLISECONDS, () -> database.withTimeout(0, MILLISECONDS), ms -> database.withTimeout(ms, MILLISECONDS), () -> TimeoutContext.throwMongoTimeoutException(message)); } return database; } private static Mono databaseWithTimeoutMono(final MongoDatabase database, final String message, @Nullable final Timeout timeout) { try { return Mono.just(databaseWithTimeout(database, message, timeout)); } catch (MongoOperationTimeoutException e) { return Mono.error(e); } } public static Mono databaseWithTimeoutDeferred(final MongoDatabase database, @Nullable final Timeout timeout) { return databaseWithTimeoutDeferred(database, DEFAULT_TIMEOUT_MESSAGE, timeout); } public static Mono databaseWithTimeoutDeferred(final MongoDatabase database, final String message, @Nullable final Timeout timeout) { return Mono.defer(() -> databaseWithTimeoutMono(database, message, timeout)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy