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

io.scalecube.services.transport.api.ServiceMessageDataDecoder Maven / Gradle / Ivy

package io.scalecube.services.transport.api;

import io.scalecube.services.api.ServiceMessage;
import io.scalecube.utils.ServiceLoaderUtil;
import java.util.function.BiFunction;

@FunctionalInterface
public interface ServiceMessageDataDecoder
    extends BiFunction, ServiceMessage> {

  ServiceMessageDataDecoder INSTANCE =
      ServiceLoaderUtil.findFirst(ServiceMessageDataDecoder.class).orElse(null);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy