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

org.springframework.data.redis.connection.lettuce.LettuceConnectionProvider Maven / Gradle / Ivy

There is a newer version: 3.2.5
Show newest version
/*
 * Copyright 2017-2018 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
 *
 *      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.springframework.data.redis.connection.lettuce;

import io.lettuce.core.RedisURI;
import io.lettuce.core.api.StatefulConnection;

/**
 * Defines a provider for Lettuce connections.
 * 

* This interface is typically used to encapsulate a native factory which returns a {@link StatefulConnection * connection} of on each invocation. *

* Connection providers may create a new connection on each invocation or return pooled instances. Each obtained * connection must be released through its connection provider to allow disposal or release back to the pool. *

* Connection providers are usually associated with a {@link io.lettuce.core.codec.RedisCodec} to create connections * with an appropriate codec. * * @author Mark Paluch * @author Christoph Strobl * @since 2.0 * @see StatefulConnection */ @FunctionalInterface public interface LettuceConnectionProvider { /** * Request a connection given {@code connectionType}. Providing a connection type allows specialization to provide a * more specific connection type. * * @param connectionType must not be {@literal null}. * @return the requested connection. Must be {@link #release(StatefulConnection) released} if the connection is no * longer in use. */ > T getConnection(Class connectionType); /** * Release the {@link StatefulConnection connection}. Closes connection {@link StatefulConnection#close()} by default. * Implementations may choose whether they override this method and return the connection to a pool. * * @param connection must not be {@literal null}. */ default void release(StatefulConnection connection) { connection.close(); } /** * Extension to {@link LettuceConnectionProvider} for providers that allow connection creation to specific nodes. */ interface TargetAware { /** * Request a connection given {@code connectionType} for a specific {@link RedisURI}. Providing a connection type * allows specialization to provide a more specific connection type. * * @param connectionType must not be {@literal null}. * @param redisURI must not be {@literal null}. * @return the requested connection. */ > T getConnection(Class connectionType, RedisURI redisURI); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy