com.nrinaudo.fetch

RequestEntityLike

trait RequestEntityLike[+Self <: RequestEntityLike[Self]] extends AnyRef

Self Type
Self
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RequestEntityLike
  2. AnyRef
  3. 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): Self

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

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

    Attributes
    protected
  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.

  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.

  4. abstract def mediaType: MediaType

    Media type of the request entity.

  5. abstract 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

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.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

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

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

  10. def deflate: Self

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

  11. def encoding(value: Encoding): Self

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

  12. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  16. def gzip: Self

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

  17. def hashCode(): Int

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

    Definition Classes
    Any
  19. def mediaType(value: MediaType): Self

    Sets this request entity's media type.

  20. final def ne(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef
  24. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped