io.rsocket.frame.decoder.PayloadDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rsocket-core Show documentation
Show all versions of rsocket-core Show documentation
Core functionality for the RSocket library
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