Package org.infinispan.util
Class IntSetExternalizer
- java.lang.Object
-
- org.infinispan.commons.marshall.AbstractExternalizer<org.infinispan.commons.util.IntSet>
-
- org.infinispan.util.IntSetExternalizer
-
- All Implemented Interfaces:
Serializable
,org.infinispan.commons.marshall.AdvancedExternalizer<org.infinispan.commons.util.IntSet>
,org.infinispan.commons.marshall.Externalizer<org.infinispan.commons.util.IntSet>
public class IntSetExternalizer extends org.infinispan.commons.marshall.AbstractExternalizer<org.infinispan.commons.util.IntSet>
Externalizer to be used for IntSet implementations- Since:
- 9.0
- Author:
- wburns
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntSetExternalizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getId()
Set<Class<? extends org.infinispan.commons.util.IntSet>>
getTypeClasses()
org.infinispan.commons.util.IntSet
readObject(ObjectInput input)
void
writeObject(ObjectOutput output, org.infinispan.commons.util.IntSet intSet)
-
-
-
Method Detail
-
getId
public Integer getId()
- Specified by:
getId
in interfaceorg.infinispan.commons.marshall.AdvancedExternalizer<org.infinispan.commons.util.IntSet>
- Overrides:
getId
in classorg.infinispan.commons.marshall.AbstractExternalizer<org.infinispan.commons.util.IntSet>
-
writeObject
public void writeObject(ObjectOutput output, org.infinispan.commons.util.IntSet intSet) throws IOException
- Throws:
IOException
-
readObject
public org.infinispan.commons.util.IntSet readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
-