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.
  • Method Details

    • execute

      @Nullable <K, V> T execute(RedisOperations<K,V> operations) throws org.springframework.dao.DataAccessException
      Executes all the given operations inside the same session.
      Parameters:
      operations - Redis operations
      Returns:
      return value
      Throws:
      org.springframework.dao.DataAccessException