Class/Object

fm.http.server

Request

Related Docs: object Request | package server

Permalink

final class Request extends Logging with Closeable

Linear Supertypes
Closeable, AutoCloseable, Logging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Request
  2. Closeable
  3. AutoCloseable
  4. Logging
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Request(remoteIp: IP, request: HttpRequest, content: LinkedHttpContentReader)(implicit execution: ExecutionContext)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def close(t: Throwable): Unit

    Permalink
  7. def close(): Unit

    Permalink
    Definition Classes
    Request → Closeable → AutoCloseable
  8. def completed: Future[Unit]

    Permalink

    This future is completed when the request has been fully processed

  9. val content: LinkedHttpContentReader

    Permalink
  10. def contentLength: Option[Long]

    Permalink

    The Content-Length of the request body (if known)

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  16. val headers: ImmutableHeaders

    Permalink
  17. val host: Option[String]

    Permalink

    The value of the Host header WITHOUT the port number

  18. val hostWithPort: Option[String]

    Permalink

    The raw value of the Host headers which may contain a port number: frugalmechanic.com:8080

  19. val id: UUID

    Permalink

    A fm.common.UUID that can be used to uniquely identify this request

  20. def isCONNECT: Boolean

    Permalink
  21. def isContentFullyRead: Boolean

    Permalink
  22. def isDELETE: Boolean

    Permalink
  23. def isGET: Boolean

    Permalink
  24. def isHEAD: Boolean

    Permalink
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. def isOPTIONS: Boolean

    Permalink
  27. def isPATCH: Boolean

    Permalink
  28. def isPOST: Boolean

    Permalink
  29. def isPUT: Boolean

    Permalink
  30. def isTRACE: Boolean

    Permalink
  31. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  32. val method: HttpMethod

    Permalink
  33. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. val params: QueryParams

    Permalink

    The parsed query params

  37. val path: String

    Permalink

    The path that was requested (no query params, e.g.

    The path that was requested (no query params, e.g. /path)

  38. lazy val postBody: Future[PostBody]

    Permalink

    The contents of the POST/PUT/PATCH body.

    The contents of the POST/PUT/PATCH body. Only access this value if you want to initiate receiving the data

  39. val remoteIp: IP

    Permalink
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. val uri: String

    Permalink
  43. val version: HttpVersion

    Permalink
  44. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Closeable

Inherited from AutoCloseable

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped