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

org.wildfly.clustering.marshalling.protostream.ProtoStreamMarshallerAdapter Maven / Gradle / Ivy

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

package org.wildfly.clustering.marshalling.protostream;

import java.io.IOException;

import org.infinispan.protostream.ProtobufTagMarshaller;
import org.infinispan.protostream.impl.TagWriterImpl;

/**
 * Adapts a {@link ProtobufTagMarshaller} to a {@link ProtoStreamMarshaller}.
 * @author Paul Ferraro
 */
public class ProtoStreamMarshallerAdapter implements ProtoStreamMarshaller {

    private final ProtobufTagMarshaller marshaller;

    ProtoStreamMarshallerAdapter(ProtobufTagMarshaller marshaller) {
        this.marshaller = marshaller;
    }

    @Override
    public Class getJavaClass() {
        return this.marshaller.getJavaClass();
    }

    @Override
    public String getTypeName() {
        return this.marshaller.getTypeName();
    }

    @Override
    public T readFrom(ProtoStreamReader reader) throws IOException {
        return this.read((ReadContext) reader);
    }

    @Override
    public void writeTo(ProtoStreamWriter writer, T value) throws IOException {
        this.write((TagWriterImpl) ((WriteContext) writer).getWriter(), value);
    }

    @Override
    public T read(ReadContext context) throws IOException {
        return this.marshaller.read(context);
    }

    @Override
    public void write(WriteContext context, T value) throws IOException {
        this.marshaller.write(context, value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy