
reactor.tcp.encoding.Frame Maven / Gradle / Ivy
The newest version!
package reactor.tcp.encoding;
import reactor.io.Buffer;
/**
* @author Jon Brisbin
*/
public class Frame {
private final Buffer prefix;
private final Buffer data;
public Frame(Buffer prefix, Buffer data) {
this.prefix = prefix;
this.data = data;
}
public Buffer getPrefix() {
return prefix;
}
public Buffer getData() {
return data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy