Class CacheJoinNodeDiscoveryData.CacheInfo
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.CacheJoinNodeDiscoveryData.CacheInfo
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- CacheJoinNodeDiscoveryData
public static class CacheJoinNodeDiscoveryData.CacheInfo extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CacheInfo(StoredCacheData cacheData, CacheType cacheType, boolean sql, long flags, boolean staticallyConfigured)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StoredCacheDatacacheData()CacheTypecacheType()longgetFlags()booleanisStaticallyConfigured()booleansql()StringtoString()
-
-
-
Constructor Detail
-
CacheInfo
public CacheInfo(StoredCacheData cacheData, CacheType cacheType, boolean sql, long flags, boolean staticallyConfigured)
- Parameters:
cacheData- Cache data.cacheType- Cache type.sql- SQL flag -trueif cache was created withCREATE TABLE.flags- Flags (for future usage).staticallyConfigured-trueif it was configured by static config andfalseotherwise.
-
-
Method Detail
-
cacheData
public StoredCacheData cacheData()
- Returns:
- Cache data.
-
cacheType
public CacheType cacheType()
- Returns:
- Cache type.
-
sql
public boolean sql()
- Returns:
- SQL flag -
trueif cache was created withCREATE TABLE.
-
isStaticallyConfigured
public boolean isStaticallyConfigured()
- Returns:
trueif it was configured by static config andfalseotherwise.
-
getFlags
public long getFlags()
- Returns:
- Long which bits represent some flags.
-
-