implicit final class VertxHttpClientRequestOps extends AnyVal
- Alphabetic
- By Inheritance
- VertxHttpClientRequestOps
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new VertxHttpClientRequestOps(target: HttpClientRequest)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
endL(): Task[Unit]
Same as
#end()
but with anhandler
called when the operation completes -
def
endL(chunk: Buffer): Task[Unit]
Same as
#end(String)
but with anhandler
called when the operation completes -
def
endL(chunk: String, enc: String): Task[Unit]
Same as
#end(String,String)
but with anhandler
called when the operation completes -
def
endL(chunk: String): Task[Unit]
Same as
#end(String)
but with anhandler
called when the operation completes -
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
pipeToL(dst: WriteStream[HttpClientResponse]): Task[Unit]
Pipe this
ReadStream
to theWriteStream
.Pipe this
ReadStream
to theWriteStream
.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the
handler
will be called with the result.- dst
the destination write stream
- val target: HttpClientRequest
-
def
toString(): String
- Definition Classes
- Any
-
def
writeL(chunk: String, enc: String): Task[Unit]
Same as
#write(String,String)
but with anhandler
called when the operation completes -
def
writeL(chunk: String): Task[Unit]
Same as
#write(String)
but with anhandler
called when the operation completes -
def
writeL(data: Buffer): Task[Unit]
Same as
#write(Buffer)
but with anhandler
called when the operation completes