Tagged Questions
0
votes
1answer
173 views
Can I use JDBC blocking call in worker verticle of Vert.x?
I found the following sentence in the manual of Vert.x.
Worker verticles are also not allowed to use TCP or HTTP clients or
servers.
JDBC is also a TCP client, right?
Then I can't use JDBC ...
1
vote
1answer
262 views
Simple TCP proxy in Vert.x using Pump class (JAVA)
I would like to realize a proof of concept TCP transparent proxy in Vert.x.
Requirement
A verticle that listens on port X and when somebody connects and sends data it opens a client connection ...