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

org.snapscript.agent.event.MessageEnvelope Maven / Gradle / Ivy


package org.snapscript.agent.event;

public class MessageEnvelope {
   
   private final byte[] data;
   private final int offset;
   private final int length;
   private final int code;
   
   public MessageEnvelope(int code, byte[] data, int offset, int length) {
      this.offset = offset;
      this.length = length;
      this.data = data;
      this.code = code;
   }
   
   public int getCode() {
      return code;
   }
   
   public byte[] getData() {
      return data;
   }
   
   public int getLength() {
      return length;
   }
   
   public int getOffset() {
      return offset;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy