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

org.springframework.data.redis.core.ReactiveListOperationsExtensions.kt Maven / Gradle / Ivy

There is a newer version: 3.2.5
Show newest version
/*
 * Copyright 2019-2021 the original author or authors.
 *
 * 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
 *
 *      https://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.springframework.data.redis.core

import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.reactive.asFlow
import kotlinx.coroutines.reactive.awaitFirstOrNull
import kotlinx.coroutines.reactive.awaitSingle
import java.time.Duration

/**
 * Coroutines variant of [ReactiveListOperations.range].
 *
 * @author Sebastien Deleuze
 * @since 2.2
 */
fun  ReactiveListOperations.rangeAsFlow(key: K, start: Long, end: Long): Flow =
		range(key, start, end).asFlow()

/**
 * Coroutines variant of [ReactiveListOperations.trim].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.trimAndAwait(key: K, start: Long, end: Long): Boolean =
		trim(key, start, end).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.size].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.sizeAndAwait(key: K): Long =
		size(key).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.leftPush].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.leftPushAndAwait(key: K, value: V): Long =
		leftPush(key, value).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.leftPushAll].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.leftPushAllAndAwait(key: K, vararg values: V): Long =
		leftPushAll(key, *values).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.leftPushAll].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.leftPushAllAndAwait(key: K, values: Collection): Long =
		leftPushAll(key, values).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.leftPushIfPresent].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.leftPushIfPresentAndAwait(key: K, value: V): Long =
		leftPushIfPresent(key, value).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.leftPushIfPresent].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.leftPushAndAwait(key: K, pivot: V, value: V): Long =
		leftPush(key, pivot, value).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.rightPush].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.rightPushAndAwait(key: K, value: V): Long =
		rightPush(key, value).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.rightPushAll].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.rightPushAllAndAwait(key: K, vararg values: V): Long =
		rightPushAll(key, *values).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.rightPushAll].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.rightPushAllAndAwait(key: K, values: Collection): Long =
		rightPushAll(key, values).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.rightPushIfPresent].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.rightPushIfPresentAndAwait(key: K, value: V): Long =
		rightPushIfPresent(key, value).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.rightPushIfPresent].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.rightPushAndAwait(key: K, pivot: V, value: V): Long =
		rightPush(key, pivot, value).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.set].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.setAndAwait(key: K, index: Long, value: V): Boolean =
		set(key, index, value).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.remove].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.removeAndAwait(key: K, count: Long, value: V): Long =
		remove(key, count, value).awaitSingle()

/**
 * Coroutines variant of [ReactiveListOperations.index].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.indexAndAwait(key: K, index: Long): V? =
		index(key, index).awaitFirstOrNull()

/**
 * Coroutines variant of [ReactiveListOperations.leftPop].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.leftPopAndAwait(key: K): V? =
		leftPop(key).awaitFirstOrNull()

/**
 * Coroutines variant of [ReactiveListOperations.leftPop].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.leftPopAndAwait(key: K, timeout: Duration): V? =
		leftPop(key, timeout).awaitFirstOrNull()

/**
 * Coroutines variant of [ReactiveListOperations.rightPop].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.rightPopAndAwait(key: K): V? =
		rightPop(key).awaitFirstOrNull()

/**
 * Coroutines variant of [ReactiveListOperations.rightPop].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.rightPopAndAwait(key: K, timeout: Duration): V? =
		rightPop(key, timeout).awaitFirstOrNull()

/**
 * Coroutines variant of [ReactiveListOperations.rightPopAndLeftPush].
 *
 * @author Wonwoo Lee
 * @since 2.3
 */
suspend fun  ReactiveListOperations.rightPopAndLeftPushAndAwait(key: K, destinationKey: K): V? =
	rightPopAndLeftPush(key, destinationKey).awaitFirstOrNull()

/**
 * Coroutines variant of [ReactiveListOperations.rightPopAndLeftPush].
 *
 * @author Wonwoo Lee
 * @since 2.3
 */
suspend fun  ReactiveListOperations.rightPopAndLeftPushAndAwait(key: K, destinationKey: K, timeout: Duration): V? =
	rightPopAndLeftPush(key, destinationKey, timeout).awaitFirstOrNull()

/**
 * Coroutines variant of [ReactiveListOperations.delete].
 *
 * @author Mark Paluch
 * @since 2.2
 */
suspend fun  ReactiveListOperations.deleteAndAwait(key: K): Boolean =
		delete(key).awaitSingle()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy