com.nrinaudo.fetch

TextRequestEntity

trait TextRequestEntity extends RequestEntity with RequestEntityLike[TextRequestEntity]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TextRequestEntity
  2. RequestEntity
  3. RequestEntityLike
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def build(mediaType: MediaType, encoding: Encoding): TextRequestEntity

    Creates a new instance of this class with the specified values.

    Creates a new instance of this class with the specified values.

    Attributes
    protected
    Definition Classes
    RequestEntityLike
  2. abstract def encoding: Encoding

    Encoding in which the request entity should be transferred.

    Encoding in which the request entity should be transferred.

    Some but not all servers will accept encodings other than Encoding.Identity. When such is known to be the case, using Encoding.Gzip, for example, can yield significant performance gains.

    Definition Classes
    RequestEntityLike
  3. abstract def length: Option[Long]

    Length, in bytes, of the request entity.

    Length, in bytes, of the request entity.

    Note that this is different from the content length, which represents the number of bytes that will actually be transferred. This can be less than the entity's length if, for example, the gzip encoding is used.

    Definition Classes
    RequestEntityLike
  4. abstract def mediaType: MediaType

    Media type of the request entity.

    Media type of the request entity.

    Definition Classes
    RequestEntityLike
  5. abstract def write(out: Writer): Unit

    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply(out: OutputStream): Unit

    Writes this request entity to the specified output stream, applying its transfer encoding if applicable.

    Writes this request entity to the specified output stream, applying its transfer encoding if applicable.

    Definition Classes
    RequestEntityLike
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def charset: Charset

  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def contentLength: Option[Long]

    Number of bytes that will be transferred when this request entity is sent to a remote host.

    Number of bytes that will be transferred when this request entity is sent to a remote host.

    Definition Classes
    RequestEntityLike
  11. def deflate: TextRequestEntity

    Sets this request entity's transfer encoding to Encoding.Deflate.

    Sets this request entity's transfer encoding to Encoding.Deflate.

    Definition Classes
    RequestEntityLike
  12. def encoding(value: Encoding): TextRequestEntity

    Sets this request entity's transfer encoding to the specified value.

    Sets this request entity's transfer encoding to the specified value.

    Definition Classes
    RequestEntityLike
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def gzip: TextRequestEntity

    Sets this request entity's transfer encoding to Encoding.Gzip.

    Sets this request entity's transfer encoding to Encoding.Gzip.

    Definition Classes
    RequestEntityLike
  18. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def mediaType(value: MediaType): TextRequestEntity

    Sets this request entity's media type.

    Sets this request entity's media type.

    Definition Classes
    RequestEntityLike
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def write(out: OutputStream): Unit

    Writes this request entity to the specified output stream.

    Writes this request entity to the specified output stream.

    Attributes
    protected
    Definition Classes
    TextRequestEntityRequestEntityLike

Inherited from RequestEntity

Inherited from AnyRef

Inherited from Any

Ungrouped