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

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

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.protostream;

/**
 * An evolvable message, with support for preserving unknown fields that result from schema evolution. This is an
 * optional interface. Implementing it is only required if support for preserving unknown fields is desired.
 *
 * @author [email protected]
 * @since 1.0
 * @deprecated this mechanism was replaced by {@link UnknownFieldSetHandler} interface
 */
@Deprecated
public interface Message {

   UnknownFieldSet getUnknownFieldSet();

   void setUnknownFieldSet(UnknownFieldSet unknownFieldSet);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy