The writeTextMessage method can be used to write a single large text
message as multiple websocket frames.
The binaryMessageHandler or textMessageHandler will receive multi-frame
messages as a single re-assembled buffer or string.
The maximum size of re-assembled messages can be specified with the
maxWebsocketMessageSize http option on both the server and client side.
Messages that are too large to re-assemble are dropped and the
exception handler is invoked with an IllegalStateException.
Issue #1807
Signed-off-by: rmelick <rmelick@cs.hmc.edu>
add SOCKS proxy support to HttpClient and NetClient
changed proxy options into a ProxyObject class
add small socks4/5 proxy for testing
move proxyOptions property to ClientOptionsBase
add unit tests
add missing ctx.fireXXX in VertxHandler
move ProxyChannelProvider to its own package
add classnotfound check to NetClientImpl
add to documentation about proxy config
Signed-off-by: alexlehm <alexlehm@gmail.com>
Add the paragraph about server sharing and explain the round robin strategy Vert.x uses.
Signed-off-by: Clement Escoffier <clement.escoffier@gmail.com>