com.fireflysource.net.websocket.common.frame.ContinuationFrame Maven / Gradle / Ivy
package com.fireflysource.net.websocket.common.frame;
import com.fireflysource.common.string.StringUtils;
import com.fireflysource.net.websocket.common.model.OpCode;
import java.nio.ByteBuffer;
public class ContinuationFrame extends DataFrame {
public ContinuationFrame() {
super(OpCode.CONTINUATION);
}
public ContinuationFrame(Frame basedOn) {
super(basedOn);
}
@Override
public ContinuationFrame setPayload(ByteBuffer buf) {
super.setPayload(buf);
return this;
}
public ContinuationFrame setPayload(byte[] buf) {
return this.setPayload(ByteBuffer.wrap(buf));
}
public ContinuationFrame setPayload(String message) {
return this.setPayload(StringUtils.getUtf8Bytes(message));
}
@Override
public Type getType() {
return Type.CONTINUATION;
}
}