Class GridCacheQueryResponseEntry<K,V>
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.query.GridCacheQueryResponseEntry<K,V>
-
- All Implemented Interfaces:
Externalizable,Serializable,Map.Entry<K,V>
@Deprecated public class GridCacheQueryResponseEntry<K,V> extends Object implements Map.Entry<K,V>, Externalizable
Deprecated.Should be removed in Apache Ignite 3.0.Class to store query results returned by remote nodes. It's required to fully control serialization process. Local entries can be returned to user as is.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GridCacheQueryResponseEntry()Deprecated.Required byExternalizable.GridCacheQueryResponseEntry(K key, V val)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object o)Deprecated.KgetKey()Deprecated.VgetValue()Deprecated.inthashCode()Deprecated.voidreadExternal(ObjectInput in)Deprecated.VsetValue(V val)Deprecated.StringtoString()Deprecated.voidwriteExternal(ObjectOutput out)Deprecated.
-
-
-
Constructor Detail
-
GridCacheQueryResponseEntry
public GridCacheQueryResponseEntry()
Deprecated.Required byExternalizable.
-
-
Method Detail
-
getKey
public K getKey()
Deprecated.
-
getValue
public V getValue()
Deprecated.
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
Deprecated.- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
Deprecated.- Specified by:
readExternalin interfaceExternalizable- Throws:
IOExceptionClassNotFoundException
-
equals
public boolean equals(Object o)
Deprecated.
-
hashCode
public int hashCode()
Deprecated.
-
-