com.fireflysource.net.websocket.common.frame.PongFrame 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 PongFrame extends ControlFrame {
public PongFrame() {
super(OpCode.PONG);
}
public PongFrame setPayload(byte[] bytes) {
setPayload(ByteBuffer.wrap(bytes));
return this;
}
public PongFrame setPayload(String payload) {
setPayload(StringUtils.getUtf8Bytes(payload));
return this;
}
@Override
public Type getType() {
return Type.PONG;
}
}