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

org.infinispan.protostream.UnknownFieldSetHandler Maven / Gradle / Ivy

package org.infinispan.protostream;

/**
 * An interface to be implemented by marshaller objects of type {@link MessageMarshaller}) that are able to handle
 * unknown fields by storing them into an {@link UnknownFieldSet}.
 *
 * @author [email protected]
 * @since 3.0
 */
public interface UnknownFieldSetHandler {

   UnknownFieldSet getUnknownFieldSet(T message);

   void setUnknownFieldSet(T message, UnknownFieldSet unknownFieldSet);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy