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

io.rsocket.frame.decoder.PayloadDecoder Maven / Gradle / Ivy

The newest version!
package io.rsocket.frame.decoder;

import io.netty.buffer.ByteBuf;
import io.rsocket.Payload;
import java.util.function.Function;

public interface PayloadDecoder extends Function {
  PayloadDecoder DEFAULT = new DefaultPayloadDecoder();
  PayloadDecoder ZERO_COPY = new ZeroCopyPayloadDecoder();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy