Class IntermediateOperationExternalizer
- java.lang.Object
-
- org.infinispan.stream.impl.intops.IntermediateOperationExternalizer
-
- All Implemented Interfaces:
Serializable
,org.infinispan.commons.marshall.AdvancedExternalizer<IntermediateOperation>
,org.infinispan.commons.marshall.Externalizer<IntermediateOperation>
public class IntermediateOperationExternalizer extends Object implements org.infinispan.commons.marshall.AdvancedExternalizer<IntermediateOperation>
Externalizer to be used for serializing the various intermediate operations- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntermediateOperationExternalizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getId()
Set<Class<? extends IntermediateOperation>>
getTypeClasses()
IntermediateOperation
readObject(ObjectInput input)
void
writeObject(ObjectOutput output, IntermediateOperation object)
-
-
-
Method Detail
-
getTypeClasses
public Set<Class<? extends IntermediateOperation>> getTypeClasses()
- Specified by:
getTypeClasses
in interfaceorg.infinispan.commons.marshall.AdvancedExternalizer<IntermediateOperation>
-
getId
public Integer getId()
- Specified by:
getId
in interfaceorg.infinispan.commons.marshall.AdvancedExternalizer<IntermediateOperation>
-
writeObject
public void writeObject(ObjectOutput output, IntermediateOperation object) throws IOException
- Specified by:
writeObject
in interfaceorg.infinispan.commons.marshall.Externalizer<IntermediateOperation>
- Throws:
IOException
-
readObject
public IntermediateOperation readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Specified by:
readObject
in interfaceorg.infinispan.commons.marshall.Externalizer<IntermediateOperation>
- Throws:
IOException
ClassNotFoundException
-
-