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

com.litongjava.tio.http.common.sse.ChunkedPacket Maven / Gradle / Ivy

There is a newer version: 3.7.3.v20241201-RELEASE
Show newest version
package com.litongjava.tio.http.common.sse;

import java.nio.ByteBuffer;

import com.litongjava.tio.core.TioConfig;
import com.litongjava.tio.http.common.HttpResponsePacket;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@NoArgsConstructor
@Getter
@Setter
public class ChunkedPacket extends HttpResponsePacket {
  private static final long serialVersionUID = 1014364783783749718L;
  private byte[] bytes;

  @Override
  public ByteBuffer toByteBuffer(TioConfig tioConfig) {
    ByteBuffer buffer = ByteBuffer.allocate(bytes.length);
    buffer.order(tioConfig.getByteOrder());
    buffer.put(bytes);
    buffer.flip();
    return buffer;
  }

  public ChunkedPacket(byte[] bytes) {
    this.bytes = bytes;
  }

  public ChunkedPacket(String line) {
    this.bytes = line.getBytes();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy