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 Type
    Method
    Description
    <K, V> T
    execute(RedisOperations<K,V> operations)
    Executes all the given operations inside the same session.