Uses of Enum Class
org.springframework.data.redis.connection.ReturnType
Packages that use ReturnType
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Connection package for Jedis library.
Connection package for Lettuce Redis client.
Lua script execution abstraction.
-
Uses of ReturnType in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return ReturnTypeModifier and TypeMethodDescriptionstatic ReturnTypeReturnType.fromJavaType(Class<?> javaType) static ReturnTypeReturns the enum constant of this class with the specified name.static ReturnType[]ReturnType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.springframework.data.redis.connection with parameters of type ReturnTypeModifier and TypeMethodDescriptiondefault <T> TDefaultedRedisConnection.eval(byte[] script, ReturnType returnType, int numKeys, byte[]... keysAndArgs) Deprecated.<T> TDefaultStringRedisConnection.eval(byte[] script, ReturnType returnType, int numKeys, byte[]... keysAndArgs) <T> TDefaultStringRedisConnection.eval(String script, ReturnType returnType, int numKeys, String... keysAndArgs) NOTE: This method will not deserialize Strings returned by Lua scripts, as they may not be encoded with the same serializer used here.<T> Flux<T>ReactiveScriptingCommands.eval(ByteBuffer script, ReturnType returnType, int numKeys, ByteBuffer... keysAndArgs) Evaluate givenscript.<T> TRedisScriptingCommands.eval(byte[] script, ReturnType returnType, int numKeys, byte[]... keysAndArgs) Evaluate givenscript.<T> TStringRedisConnection.eval(String script, ReturnType returnType, int numKeys, String... keysAndArgs) Evaluate givenscript.default <T> TDefaultedRedisConnection.evalSha(byte[] scriptSha, ReturnType returnType, int numKeys, byte[]... keysAndArgs) Deprecated.in favor ofRedisCommandsProvider.scriptingCommands().default <T> TDefaultedRedisConnection.evalSha(String scriptSha, ReturnType returnType, int numKeys, byte[]... keysAndArgs) Deprecated.in favor ofRedisCommandsProvider.scriptingCommands().<T> TDefaultStringRedisConnection.evalSha(byte[] scriptSha1, ReturnType returnType, int numKeys, byte[]... keysAndArgs) <T> TDefaultStringRedisConnection.evalSha(String scriptSha1, ReturnType returnType, int numKeys, byte[]... keysAndArgs) <T> TDefaultStringRedisConnection.evalSha(String scriptSha1, ReturnType returnType, int numKeys, String... keysAndArgs) NOTE: This method will not deserialize Strings returned by Lua scripts, as they may not be encoded with the same serializer used here.<T> Flux<T>ReactiveScriptingCommands.evalSha(String scriptSha, ReturnType returnType, int numKeys, ByteBuffer... keysAndArgs) Evaluate givenscriptSha.<T> TRedisScriptingCommands.evalSha(byte[] scriptSha, ReturnType returnType, int numKeys, byte[]... keysAndArgs) Evaluate givenscriptSha.<T> TRedisScriptingCommands.evalSha(String scriptSha, ReturnType returnType, int numKeys, byte[]... keysAndArgs) Evaluate givenscriptSha.<T> TStringRedisConnection.evalSha(String scriptSha, ReturnType returnType, int numKeys, String... keysAndArgs) Evaluate givenscriptSha. -
Uses of ReturnType in org.springframework.data.redis.connection.jedis
Constructors in org.springframework.data.redis.connection.jedis with parameters of type ReturnType -
Uses of ReturnType in org.springframework.data.redis.connection.lettuce
Methods in org.springframework.data.redis.connection.lettuce with parameters of type ReturnTypeModifier and TypeMethodDescriptionstatic io.lettuce.core.ScriptOutputTypeLettuceConverters.toScriptOutputType(ReturnType returnType) -
Uses of ReturnType in org.springframework.data.redis.core.script
Methods in org.springframework.data.redis.core.script with parameters of type ReturnTypeModifier and TypeMethodDescriptionprotected <T> Flux<T>DefaultReactiveScriptExecutor.eval(ReactiveRedisConnection connection, RedisScript<T> script, ReturnType returnType, int numKeys, ByteBuffer[] keysAndArgs, RedisElementReader<T> resultReader) protected <T> TDefaultScriptExecutor.eval(RedisConnection connection, RedisScript<T> script, ReturnType returnType, int numKeys, byte[][] keysAndArgs, RedisSerializer<T> resultSerializer)
RedisCommandsProvider.scriptingCommands().