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

io.scalecube.cluster.metadata.MetadataDecoder Maven / Gradle / Ivy

package io.scalecube.cluster.metadata;

import io.scalecube.utils.ServiceLoaderUtil;
import java.nio.ByteBuffer;

/**
 * MetadataDecoder. 
* Deprecated since {@code 2.4.10} in favor of {@link MetadataCodec}. */ @Deprecated @FunctionalInterface public interface MetadataDecoder { MetadataDecoder INSTANCE = ServiceLoaderUtil.findFirst(MetadataDecoder.class).orElse(null); Object decode(ByteBuffer buffer); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy