Class Options<T>
- java.lang.Object
-
- org.apache.storm.redis.trident.state.Options<T>
-
- Type Parameters:
T
- value's type class
- All Implemented Interfaces:
Serializable
public class Options<T> extends Object implements Serializable
Options of State.
It's a data structure (whole things are public) and you can access and modify all fields.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description RedisDataTypeDescription
dataTypeDescription
int
expireIntervalSec
String
globalKey
KeyFactory
keyFactory
int
localCacheSize
Serializer<T>
serializer
-
Constructor Summary
Constructors Constructor Description Options()
-
-
-
Field Detail
-
localCacheSize
public int localCacheSize
-
globalKey
public String globalKey
-
keyFactory
public KeyFactory keyFactory
-
serializer
public Serializer<T> serializer
-
dataTypeDescription
public RedisDataTypeDescription dataTypeDescription
-
expireIntervalSec
public int expireIntervalSec
-
-