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

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

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

package org.wildfly.clustering.marshalling.protostream;

import java.io.IOException;

/**
 * Writes value as a set of fields.
 * @param  the field set type
 * @author Paul Ferraro
 */
public interface FieldSetWriter {

	/**
	 * Writes the specified value as a set of fields.
	 * @param value the value to be written.
	 * @throws IOException if the value could not be written
	 */
	void writeFields(T value) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy