Class BytesRequestContent

java.lang.Object
org.eclipse.jetty.client.util.AbstractRequestContent
org.eclipse.jetty.client.util.BytesRequestContent
All Implemented Interfaces:
Request.Content
Direct Known Subclasses:
StringRequestContent

public class BytesRequestContent extends AbstractRequestContent
A Request.Content for byte arrays.
  • Constructor Details

    • BytesRequestContent

      public BytesRequestContent(byte[]... bytes)
    • BytesRequestContent

      public BytesRequestContent(String contentType, byte[]... bytes)
  • Method Details

    • getLength

      public long getLength()
      Returns:
      the content length, if known, or -1 if the content length is unknown
    • isReproducible

      public boolean isReproducible()
      Description copied from interface: Request.Content

      Whether this content producer can produce exactly the same content more than once.

      Implementations should return true only if the content can be produced more than once, which means that Request.Content.subscribe(Consumer, boolean) may be called again.

      The HttpClient implementation may use this method in particular cases where it detects that it is safe to retry a request that failed.

      Returns:
      whether the content can be produced more than once
    • newSubscription

      protected Request.Content.Subscription newSubscription(Request.Content.Consumer consumer, boolean emitInitialContent)
      Specified by:
      newSubscription in class AbstractRequestContent