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;

@FunctionalInterface
public interface MetadataDecoder {

  MetadataDecoder INSTANCE = ServiceLoaderUtil.findFirst(MetadataDecoder.class).orElse(null);

  Object decode(ByteBuffer buffer);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy