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

io.scalecube.services.transport.rsocket.ServiceMessageByteBufDataDecoder Maven / Gradle / Ivy

package io.scalecube.services.transport.rsocket;

import io.scalecube.services.api.ServiceMessage;
import io.scalecube.services.transport.api.ServiceMessageDataDecoder;

public class ServiceMessageByteBufDataDecoder implements ServiceMessageDataDecoder {

  @Override
  public ServiceMessage apply(ServiceMessage message, Class dataType) {
    return ServiceMessageCodec.decodeData(message, dataType);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy