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

com.wavefront.agent.queueing.DirectByteArrayOutputStream Maven / Gradle / Ivy

There is a newer version: 9999.0
Show newest version
package com.wavefront.agent.queueing;

import java.io.ByteArrayOutputStream;

/**
 * Enables direct access to the internal array. Avoids unnecessary copying.
 */
public final class DirectByteArrayOutputStream extends ByteArrayOutputStream {

  /**
   * Gets a reference to the internal byte array.  The {@link #size()} method indicates how many
   * bytes contain actual data added since the last {@link #reset()} call.
   */
  byte[] getArray() {
    return buf;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy