Uses of Class
org.apache.storm.redis.trident.state.Options
-
Packages that use Options Package Description org.apache.storm.redis.trident.state -
-
Uses of Options in org.apache.storm.redis.trident.state
Methods in org.apache.storm.redis.trident.state with parameters of type Options Modifier and Type Method Description static StateFactory
RedisClusterMapState. nonTransactional(JedisClusterConfig jedisClusterConfig, Options<Object> opts)
Provides StateFactory for non transactional.static StateFactory
RedisMapState. nonTransactional(JedisPoolConfig jedisPoolConfig, Options<Object> opts)
Provides StateFactory for non transactional.static StateFactory
RedisClusterMapState. opaque(JedisClusterConfig jedisClusterConfig, Options<OpaqueValue> opts)
Provides StateFactory for opaque transactional.static StateFactory
RedisMapState. opaque(JedisPoolConfig jedisPoolConfig, Options<OpaqueValue> opts)
Provides StateFactory for opaque transactional.static StateFactory
RedisClusterMapState. transactional(JedisClusterConfig jedisClusterConfig, Options<TransactionalValue> opts)
Provides StateFactory for transactional.static StateFactory
RedisMapState. transactional(JedisPoolConfig jedisPoolConfig, Options<TransactionalValue> opts)
Provides StateFactory for transactional.Constructors in org.apache.storm.redis.trident.state with parameters of type Options Constructor Description Factory(JedisClusterConfig jedisClusterConfig, StateType type, Options options)
Constructor.Factory(JedisPoolConfig jedisPoolConfig, StateType type, Options options)
Constructor.RedisClusterMapState(redis.clients.jedis.JedisCluster jedisCluster, Options options, Serializer<T> serializer, KeyFactory keyFactory)
Constructor.RedisMapState(redis.clients.jedis.JedisPool jedisPool, Options options, Serializer<T> serializer, KeyFactory keyFactory)
Constructor.
-