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

org.wildfly.clustering.infinispan.metadata.EntryVersionExternalizer Maven / Gradle / Ivy

/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.clustering.infinispan.metadata;

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

import org.infinispan.container.versioning.EntryVersion;
import org.infinispan.container.versioning.NumericVersion;
import org.infinispan.container.versioning.SimpleClusteredVersion;
import org.kohsuke.MetaInfServices;
import org.wildfly.clustering.marshalling.Externalizer;

/**
 * @author Paul Ferraro
 */
public interface EntryVersionExternalizer extends Externalizer {

    @MetaInfServices(Externalizer.class)
    public static class NumericVersionExternalizer implements EntryVersionExternalizer {

        @Override
        public void writeObject(ObjectOutput output, NumericVersion version) throws IOException {
            output.writeLong(version.getVersion());
        }

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

        @Override
        public Class getTargetClass() {
            return NumericVersion.class;
        }
    }

    @MetaInfServices(Externalizer.class)
    public class SimpleClusteredVersionExternalizer implements EntryVersionExternalizer {

        @Override
        public void writeObject(ObjectOutput output, SimpleClusteredVersion version) throws IOException {
            output.writeInt(version.getTopologyId());
            output.writeLong(version.getVersion());
        }

        @Override
        public SimpleClusteredVersion readObject(ObjectInput input) throws IOException, ClassNotFoundException {
            return new SimpleClusteredVersion(input.readInt(), input.readLong());
        }

        @Override
        public Class getTargetClass() {
            return SimpleClusteredVersion.class;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy