Interface SessionCallback<T>
public interface SessionCallback<T>
Callback executing all operations against a surrogate 'session' (basically against the same underlying Redis
connection). Allows 'transactions' to take place through the use of multi/discard/exec/watch/unwatch commands.
- Author:
- Costin Leau
-
Method Summary
Modifier and TypeMethodDescription<K,
V> T execute
(RedisOperations<K, V> operations) Executes all the given operations inside the same session.
-
Method Details
-
execute
Executes all the given operations inside the same session.- Parameters:
operations
- Redis operations- Returns:
- return value
- Throws:
DataAccessException
-