Example usage for org.springframework.data.redis.connection MessageListener interface-usage

List of usage examples for org.springframework.data.redis.connection MessageListener interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.redis.connection MessageListener interface-usage.

Usage

From source file org.springframework.session.data.redis.SessionMessageListener.java

/**
 * Listen for Redis {@link Message} notifications. If it is a "del" translate into a
 * {@link SessionDeletedEvent}. If it is an "expired" translate into a
 * {@link SessionExpiredEvent}.
 *
 * @author Rob Winch

From source file org.springframework.data.redis.listener.adapter.MessageListenerAdapter.java

/**
 * Message listener adapter that delegates the handling of messages to target listener methods via reflection, with
 * flexible message type conversion. Allows listener methods to operate on message content types, completely independent
 * from the Redis API.
 * <p/>
 * Make sure to call {@link #afterPropertiesSet()} after setting all the parameters on the adapter.

From source file org.springframework.session.data.redis.RedisOperationsSessionRepository.java

/**
 * <p>
 * A {@link org.springframework.session.SessionRepository} that is implemented using
 * Spring Data's {@link org.springframework.data.redis.core.RedisOperations}. In a web
 * environment, this is typically used in combination with {@link SessionRepositoryFilter}
 * . This implementation supports {@link SessionDeletedEvent} and