Questions tagged [vertx-verticle]
175 questions
0
votes
2 answers
Getting Concurrent TimeoutException in JUNIT with vertx
I am trying to run junit test cases using VertxUnitRunner.class.
I have 35 test cases, each time getting concurrent exception for different test case. I am running these test cases in VM machine with jenkins.
Does any one know a solution for…

Rajesh T
- 11
- 2
0
votes
1 answer
Putting code for vertx service proxy into docker
I am going to be calling an ESB, so I want to make a service proxy for that code.
Since it is going to be common to several verticles, as the code is largely consistent between each ESB call, I will create other service proxies that are…

James Black
- 41,583
- 10
- 86
- 166
0
votes
1 answer
Loading SQL script in Vertx
I have been trying to load the SQL script schema into MySQL DB using Vertx.
Though, i am able to load or update any single DB command but unable to load complete schema in one go.
The second challenge faced is that, this might be blocking code for…

epiyugu
- 13
- 5
0
votes
1 answer
Vertx Sync code runs multiple times
I am writing a web service project using Vertx web and verticles with Kotlin language. When I try to switch to Vertx Sync to stop getting into callback hell, some parts of my code run more than once without a reason. When using old callback…

Kamyar
- 2,494
- 2
- 22
- 33
0
votes
1 answer
Vertx js and Redis Sentinel Connectivity
Am Working on the versions of Vertx 3.5.0 Version and Redis with master and Slave Architecture .In their Official Site they have didn't mention of their redis sentinel Support.
So can i create a jar file which gets the Master Details of Redis and…

Manu C Rajan
- 153
- 1
- 2
- 13
0
votes
2 answers
Cluster in vertx
Vertx support cluster by native, however it seems that the cluster works on Verticle.
Different verticles can be deployed at different servers inside a local network, they can be detected automatically, also they can contaminate with each other by…

hguser
- 35,079
- 54
- 159
- 293
0
votes
0 answers
Scala Vert.x 3: Not able to receive message using Eventbus
I am new to Vert.x and trying to create verticle using scala. While I am sending a message from vertx using eventbus, but message is not received by handler. Following is my code:
class HelloWorldEventBusVerticle extends ScalaVerticle {
override…

Harmeet Singh Taara
- 6,483
- 20
- 73
- 126
-1
votes
1 answer
Do function execution continues after failing Promise in Java Vertx
I have a function which I'm trying to reduce complexity of.
public Future getAllCompanies() {
String url = ...
return Future.future(
promise ->…

M Usama Alvi
- 187
- 1
- 15
-1
votes
2 answers
vert.x : tons of rest verticles vs one rest verticle routing to classes with event bus
this is not a real problem which needs help... but a discussion about the approach. Suppose i have a Java web application developed using vert.x which expose many REST services.
Would you deploy n REST verticles, each one reachable on its port and…

gdivella
- 11
- 4
-1
votes
1 answer
How can I start a Vert.x Verticle in debug mode in IntelliJ
Very similar to this question, but not quite a duplicate (I think).
I have a Vert.x Verticle, which I run as described in the answer to the above question (i.e. by executing io.vertx.core.Launcher with relevant arguments, but I'm trying to start the…

DPWork
- 446
- 3
- 16