Class IndexQueryResultMeta
- java.lang.Object
-
- org.apache.ignite.internal.cache.query.index.IndexQueryResultMeta
-
- All Implemented Interfaces:
Externalizable,Serializable
public class IndexQueryResultMeta extends Object implements Externalizable
Metadata for IndexQuery response. This information is required to be sent to a node that initiated a query. Thick client nodes may have irrelevant information about index structure,MetaPageInfo.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IndexQueryResultMeta()IndexQueryResultMeta(SortedIndexDefinition def, int critSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LinkedHashMap<String,IndexKeyDefinition>keyDefinitions()IndexKeyTypeSettingskeyTypeSettings()voidreadExternal(ObjectInput in)voidwriteExternal(ObjectOutput out)
-
-
-
Constructor Detail
-
IndexQueryResultMeta
public IndexQueryResultMeta()
-
IndexQueryResultMeta
public IndexQueryResultMeta(SortedIndexDefinition def, int critSize)
-
-
Method Detail
-
keyTypeSettings
public IndexKeyTypeSettings keyTypeSettings()
-
keyDefinitions
public LinkedHashMap<String,IndexKeyDefinition> keyDefinitions()
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternalin interfaceExternalizable- Throws:
IOExceptionClassNotFoundException
-
-