Class ByteArrayEndPoint

All Implemented Interfaces:
Closeable, AutoCloseable, EndPoint
Direct Known Subclasses:
LocalConnector.LocalEndPoint

@Deprecated(since="2021-05-27") public class ByteArrayEndPoint extends AbstractEndPoint
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
ByteArrayEndPoint.
  • Constructor Details

    • ByteArrayEndPoint

      public ByteArrayEndPoint()
      Deprecated.
    • ByteArrayEndPoint

      public ByteArrayEndPoint(byte[] input, int outputSize)
      Deprecated.
      Parameters:
      input - the input bytes
      outputSize - the output size
    • ByteArrayEndPoint

      public ByteArrayEndPoint(String input, int outputSize)
      Deprecated.
      Parameters:
      input - the input string (converted to bytes using default encoding charset)
      outputSize - the output size
    • ByteArrayEndPoint

      public ByteArrayEndPoint(Scheduler scheduler, long idleTimeoutMs)
      Deprecated.
    • ByteArrayEndPoint

      public ByteArrayEndPoint(Scheduler timer, long idleTimeoutMs, byte[] input, int outputSize)
      Deprecated.
    • ByteArrayEndPoint

      public ByteArrayEndPoint(Scheduler timer, long idleTimeoutMs, String input, int outputSize)
      Deprecated.
    • ByteArrayEndPoint

      public ByteArrayEndPoint(Scheduler timer, long idleTimeoutMs, ByteBuffer input, ByteBuffer output)
      Deprecated.
  • Method Details

    • doShutdownOutput

      public void doShutdownOutput()
      Deprecated.
    • doClose

      public void doClose()
      Deprecated.
    • getLocalAddress

      public InetSocketAddress getLocalAddress()
      Deprecated.
      Returns:
      The local Inet address to which this EndPoint is bound, or null if this EndPoint does not represent a network connection.
    • getRemoteAddress

      public InetSocketAddress getRemoteAddress()
      Deprecated.
      Returns:
      The remote Inet address to which this EndPoint is bound, or null if this EndPoint does not represent a network connection.
    • addInputEOF

      public void addInputEOF()
      Deprecated.
    • addInput

      public void addInput(ByteBuffer in)
      Deprecated.
      Parameters:
      in - The in to set.
    • addInputAndExecute

      public void addInputAndExecute(ByteBuffer in)
      Deprecated.
    • addInput

      public void addInput(String s)
      Deprecated.
    • addInput

      public void addInput(String s, Charset charset)
      Deprecated.
    • getOutput

      public ByteBuffer getOutput()
      Deprecated.
      Returns:
      Returns the out.
    • getOutputString

      public String getOutputString()
      Deprecated.
      Returns:
      Returns the out.
    • getOutputString

      public String getOutputString(Charset charset)
      Deprecated.
      Parameters:
      charset - the charset to encode the output as
      Returns:
      Returns the out.
    • takeOutput

      public ByteBuffer takeOutput()
      Deprecated.
      Returns:
      Returns the out.
    • waitForOutput

      public ByteBuffer waitForOutput(long time, TimeUnit unit) throws InterruptedException
      Deprecated.
      Wait for some output
      Parameters:
      time - Time to wait
      unit - Units for time to wait
      Returns:
      The buffer of output
      Throws:
      InterruptedException - if interrupted
    • takeOutputString

      public String takeOutputString()
      Deprecated.
      Returns:
      Returns the out.
    • takeOutputString

      public String takeOutputString(Charset charset)
      Deprecated.
      Parameters:
      charset - the charset to encode the output as
      Returns:
      Returns the out.
    • setOutput

      public void setOutput(ByteBuffer out)
      Deprecated.
      Parameters:
      out - The out to set.
    • hasMore

      public boolean hasMore()
      Deprecated.
      Returns:
      true if there are bytes remaining to be read from the encoded input
    • fill

      public int fill(ByteBuffer buffer) throws IOException
      Deprecated.
      Description copied from interface: EndPoint
      Fill the passed buffer with data from this endpoint. The bytes are appended to any data already in the buffer by writing from the buffers limit up to it's capacity. The limit is updated to include the filled bytes.
      Parameters:
      buffer - The buffer to fill. The position and limit are modified during the fill. After the operation, the position is unchanged and the limit is increased to reflect the new data filled.
      Returns:
      an int value indicating the number of bytes filled or -1 if EOF is read or the input is shutdown.
      Throws:
      IOException - if the endpoint is closed.
    • flush

      public boolean flush(ByteBuffer... buffers) throws IOException
      Deprecated.
      Description copied from interface: EndPoint
      Flush data from the passed header/buffer to this endpoint. As many bytes as can be consumed are taken from the header/buffer position up until the buffer limit. The header/buffers position is updated to indicate how many bytes have been consumed.
      Parameters:
      buffers - the buffers to flush
      Returns:
      True IFF all the buffers have been consumed and the endpoint has flushed the data to its destination (ie is not buffering any data).
      Throws:
      IOException - If the endpoint is closed or output is shutdown.
    • reset

      public void reset()
      Deprecated.
    • getTransport

      public Object getTransport()
      Deprecated.
      Returns:
      The underlying transport object (socket, channel, etc.)
    • isGrowOutput

      public boolean isGrowOutput()
      Deprecated.
      Returns:
      the growOutput
    • setGrowOutput

      public void setGrowOutput(boolean growOutput)
      Deprecated.
      Parameters:
      growOutput - the growOutput to set
    • toString

      public String toString()
      Deprecated.
      Overrides:
      toString in class AbstractEndPoint