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

org.infinispan.commons.dataconversion.WrapperIds Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.dataconversion;

/**
 * @since 9.2
 */
public interface WrapperIds {
   byte NO_WRAPPER = 0;

   byte BYTE_ARRAY_WRAPPER = 1;

   byte PROTOBUF_WRAPPER = 2;

   /**
    * @deprecated Replaced by PROTOBUF_WRAPPER. Will be removed in next minor version.
    */
   @Deprecated(forRemoval=true, since = "10.0")
   byte PROTOSTREAM_WRAPPER = PROTOBUF_WRAPPER;

   byte IDENTITY_WRAPPER = 3;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy