Class MarshallerMappingItem
- java.lang.Object
-
- org.apache.ignite.internal.processors.marshaller.MarshallerMappingItem
-
- All Implemented Interfaces:
Serializable
public final class MarshallerMappingItem extends Object implements Serializable
Used to exchange mapping information on new mapping added or missing mapping requested flows. SeeGridMarshallerMappingProcessorjavadoc for more information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MarshallerMappingItem(byte platformId, int typeId, @Nullable String clsName)Class name may be null when instance is created to request missing mapping from cluster.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringclassName()voidclassName(String clsName)booleanequals(Object obj)inthashCode()byteplatformId()StringtoString()inttypeId()
-
-
-
Constructor Detail
-
MarshallerMappingItem
public MarshallerMappingItem(byte platformId, int typeId, @Nullable @Nullable String clsName)Class name may be null when instance is created to request missing mapping from cluster.- Parameters:
platformId- Platform id.typeId- Type id.clsName- Class name. May be null in case when the item is created to request missing mapping from grid.
-
-