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

io.hstream.ReceivedRawRecord Maven / Gradle / Ivy

package io.hstream;

/** An object that represents a received raw record. */
public class ReceivedRawRecord {

  private String recordId;

  private RecordHeader header;

  private byte[] rawRecord;

  public ReceivedRawRecord(String recordId, RecordHeader header, byte[] rawRecord) {
    this.recordId = recordId;
    this.header = header;
    this.rawRecord = rawRecord;
  }

  public String getRecordId() {
    return recordId;
  }

  public RecordHeader getHeader() {
    return header;
  }

  public byte[] getRawRecord() {
    return rawRecord;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy