org.infinispan.protostream.Message Maven / Gradle / Ivy
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