Class AbstractRedisCollection<E>

java.lang.Object
java.util.AbstractCollection<E>
org.springframework.data.redis.support.collections.AbstractRedisCollection<E>
All Implemented Interfaces:
Iterable<E>, Collection<E>, BoundKeyOperations<String>, RedisCollection<E>, RedisStore
Direct Known Subclasses:
DefaultRedisList, DefaultRedisSet, DefaultRedisZSet

public abstract class AbstractRedisCollection<E> extends AbstractCollection<E> implements RedisCollection<E>
Base implementation for RedisCollection. Provides a skeletal implementation. Note that the collection support works only with normal, non-pipeline/multi-exec connections as it requires a reply to be sent right away.
Author:
Costin Leau, Christoph Strobl, Mark Paluch