All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.server.hotrod.event.KeyValueWithPreviousEventConverterExternalizer Maven / Gradle / Ivy

package org.infinispan.server.hotrod.event;

import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Set;

import org.infinispan.commons.marshall.AbstractExternalizer;
import org.infinispan.commons.util.Util;

/**
 * Externalizer for KeyValueWithPreviousEventConverter
 *
 * @author gustavonalle
 * @since 7.2
 */
public class KeyValueWithPreviousEventConverterExternalizer extends AbstractExternalizer {
   @Override
   public Set> getTypeClasses() {
      return Util.asSet(KeyValueWithPreviousEventConverter.class);
   }

   @Override
   public void writeObject(ObjectOutput output, KeyValueWithPreviousEventConverter object) throws IOException {
   }

   @Override
   public KeyValueWithPreviousEventConverter readObject(ObjectInput input) throws IOException, ClassNotFoundException {
      return new KeyValueWithPreviousEventConverter();
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy