implicit class VertxHttpRequestOps[T] extends AnyRef
- Alphabetic
- By Inheritance
- VertxHttpRequestOps
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new VertxHttpRequestOps(target: HttpRequest[T])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def sendBufferL(body: Buffer): Task[HttpResponse[T]]
Like
#send(Handler)
but with an HTTP requestbody
buffer.Like
#send(Handler)
but with an HTTP requestbody
buffer.- body
the body
- def sendFormL(body: MultiMap): Task[HttpResponse[T]]
Like
#send(Handler)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.Like
#send(Handler)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.When the content type header is previously set to
multipart/form-data
it will be used instead.- body
the body
- def sendJsonL(body: AnyRef): Task[HttpResponse[T]]
Like
#send(Handler)
but with an HTTP requestbody
object encoded as json and the content type set toapplication/json
.Like
#send(Handler)
but with an HTTP requestbody
object encoded as json and the content type set toapplication/json
.- body
the body
- def sendJsonObjectL(body: JsonObject): Task[HttpResponse[T]]
Like
#send(Handler)
but with an HTTP requestbody
object encoded as json and the content type set toapplication/json
.Like
#send(Handler)
but with an HTTP requestbody
object encoded as json and the content type set toapplication/json
.- body
the body
- def sendL(): Task[HttpResponse[T]]
Send a request, the
handler
will receive the response as anHttpResponse
. - def sendMultipartFormL(body: MultipartForm): Task[HttpResponse[T]]
Like
#send(Handler)
but with an HTTP requestbody
multimap encoded as form and the content type set tomultipart/form-data
.Like
#send(Handler)
but with an HTTP requestbody
multimap encoded as form and the content type set tomultipart/form-data
. You may use this method to send attributes and upload files.- body
the body
- def sendStreamL(body: ReadStream[Buffer]): Task[HttpResponse[T]]
Like
#send(Handler)
but with an HTTP requestbody
stream.Like
#send(Handler)
but with an HTTP requestbody
stream.- body
the body
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val target: HttpRequest[T]
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()