Package com.hazelcast.config
Class NearCachePreloaderConfig
- java.lang.Object
-
- com.hazelcast.config.NearCachePreloaderConfig
-
- All Implemented Interfaces:
DataSerializable
,IdentifiedDataSerializable
,java.io.Serializable
public class NearCachePreloaderConfig extends java.lang.Object implements IdentifiedDataSerializable, java.io.Serializable
Configuration for storing and pre-loading Near Cache keys. Preloader re-populates Near Cache after client/server restart to provide fast access.- Since:
- 3.8
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_STORE_INITIAL_DELAY_SECONDS
Default initial delay for the Near Cache key storage.static int
DEFAULT_STORE_INTERVAL_SECONDS
Default interval for the Near Cache key storage (in seconds).
-
Constructor Summary
Constructors Constructor Description NearCachePreloaderConfig()
NearCachePreloaderConfig(boolean enabled, java.lang.String directory)
NearCachePreloaderConfig(NearCachePreloaderConfig nearCachePreloaderConfig)
NearCachePreloaderConfig(java.lang.String directory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
getClassId()
Returns type identifier for this class.java.lang.String
getDirectory()
int
getFactoryId()
Returns DataSerializableFactory factory ID for this class.int
getStoreInitialDelaySeconds()
int
getStoreIntervalSeconds()
int
hashCode()
boolean
isEnabled()
void
readData(ObjectDataInput in)
Reads fields from the input streamNearCachePreloaderConfig
setDirectory(java.lang.String directory)
NearCachePreloaderConfig
setEnabled(boolean isEnabled)
NearCachePreloaderConfig
setStoreInitialDelaySeconds(int storeInitialDelaySeconds)
NearCachePreloaderConfig
setStoreIntervalSeconds(int storeIntervalSeconds)
java.lang.String
toString()
void
writeData(ObjectDataOutput out)
Writes object fields to output stream
-
-
-
Field Detail
-
DEFAULT_STORE_INITIAL_DELAY_SECONDS
public static final int DEFAULT_STORE_INITIAL_DELAY_SECONDS
Default initial delay for the Near Cache key storage.- See Also:
- Constant Field Values
-
DEFAULT_STORE_INTERVAL_SECONDS
public static final int DEFAULT_STORE_INTERVAL_SECONDS
Default interval for the Near Cache key storage (in seconds).- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NearCachePreloaderConfig
public NearCachePreloaderConfig()
-
NearCachePreloaderConfig
public NearCachePreloaderConfig(NearCachePreloaderConfig nearCachePreloaderConfig)
-
NearCachePreloaderConfig
public NearCachePreloaderConfig(java.lang.String directory)
-
NearCachePreloaderConfig
public NearCachePreloaderConfig(boolean enabled, java.lang.String directory)
-
-
Method Detail
-
isEnabled
public boolean isEnabled()
-
setEnabled
public NearCachePreloaderConfig setEnabled(boolean isEnabled)
-
setDirectory
public NearCachePreloaderConfig setDirectory(java.lang.String directory)
-
getDirectory
public java.lang.String getDirectory()
-
getStoreInitialDelaySeconds
public int getStoreInitialDelaySeconds()
-
setStoreInitialDelaySeconds
public NearCachePreloaderConfig setStoreInitialDelaySeconds(int storeInitialDelaySeconds)
-
getStoreIntervalSeconds
public int getStoreIntervalSeconds()
-
setStoreIntervalSeconds
public NearCachePreloaderConfig setStoreIntervalSeconds(int storeIntervalSeconds)
-
getFactoryId
public int getFactoryId()
Description copied from interface:IdentifiedDataSerializable
Returns DataSerializableFactory factory ID for this class.- Specified by:
getFactoryId
in interfaceIdentifiedDataSerializable
- Returns:
- factory ID
-
getClassId
public int getClassId()
Description copied from interface:IdentifiedDataSerializable
Returns type identifier for this class. It should be unique per DataSerializableFactory.- Specified by:
getClassId
in interfaceIdentifiedDataSerializable
- Returns:
- type ID
-
writeData
public void writeData(ObjectDataOutput out) throws java.io.IOException
Description copied from interface:DataSerializable
Writes object fields to output stream- Specified by:
writeData
in interfaceDataSerializable
- Parameters:
out
- output- Throws:
java.io.IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the output stream has been closed.
-
readData
public void readData(ObjectDataInput in) throws java.io.IOException
Description copied from interface:DataSerializable
Reads fields from the input stream- Specified by:
readData
in interfaceDataSerializable
- Parameters:
in
- input- Throws:
java.io.IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the input stream has been closed.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-