Questions tagged [vertx-eventbus]
98 questions
0
votes
1 answer
Vert.x EventBus to communicate between two different application in Quarkus?
Can we use Vert.x EventBus to publish message to one application and from another independent application to consume it
I've tested publishing to EventBus and consuming in one application, where it works flawlessly, but when I tried to publish…

Tabrez Mohammed
- 3
- 3
0
votes
1 answer
Vertx: request/response with response stream
I want to implement a verticle that can respond to a request with a long running stream via the event bus. Looking at the event bus, both the request/response and pub/sub patterns are supported - I want to combine them into a kind of…

firtydank
- 165
- 1
- 10
0
votes
1 answer
What is the correct way to call an external service (API) in a quarkus reactive application using vertx & mutiny?
I am new to reactive programming with vertx & muntiny (quarkus). I have the below requirement:
Structure:
External API call returns -> Response
class Response {String abc; List another; ...}
class AnotherClass { List> roles…

Vemai Clan
- 33
- 4
0
votes
1 answer
Vertx cluster member connection breaks on hazelcast uuid reset
I am working on a project that is composed of multiple vertx micro services where each service runs on different containers in Openshift platform. Eventbus is used for communication between services.
Sometime when a request is made via eventbus…

java_dev
- 323
- 6
- 17
0
votes
0 answers
share request context between threads
I have a Quarkus app with REST API and multiple services that are @ApplicationScoped, and one bean that is @RequestScoped (it has data related to JWT, cookies etc).
When the REST API is invoked, I want to do some work synchronously and then return…

Bentz
- 103
- 7
0
votes
1 answer
How to use Vertx EventBus to send messages between Verticles?
I am currently maintaining application written in Java with Vertx framework.
I would like to implement sending messages between 2 application instances (primary and secondary) using EventBus (over the network). Is it possible?
In the Vertx…

Zygmuntix
- 339
- 3
- 13
0
votes
0 answers
Vertx event bus slowly consuming events on load
Asking this same question again
Vertx event bus slow consuming issue
We have a non clustered vertx application, and we use the event bus to internally communicate between verticles.
Verticle A consumes from the bus, performs a HTTP request, and…

Aman Garg
- 1
- 1
0
votes
0 answers
Vertx: How to combine third party events with Standard Verticle and Worker Verticle style event send and reply approach
I am trying to solve an issue whereby I need to combine third party events with the eventBus send and reply approach that Vertx provides for Standard and Worker Verticle setups. I am not sure if what I have laid out below is necessarily the correct…

Michael
- 103
- 1
- 10
0
votes
1 answer
VertX EventBus not receiving messages in AWS context
I have a Java service running on 3 different ec2 instances. They form a cluster using Hazelcast. Here's part of my cluster.xml configuration:
…
0
votes
1 answer
Browser not setting status to 200 OK after server sends response to Angular client
I am sending a GET request from my Angular client to the Java Vertx server where I am doing some operation on the server. Now at the end of the operation on the server, I send a message to the client notifying it that the operation has finished. But…

ZAJ
- 793
- 3
- 23
- 50
0
votes
0 answers
What is the most efficient way to implement a complicated reactive program in vertx? Should I depend on event bus?
I want to implement a complicated reactive program in vertx, which contains multiple blocking operation steps. There seems several ways to implement it AFAIK, there may be other ways as well, what is the most efficient way in terms of throughout and…

Dio Jin
- 1
- 1
0
votes
1 answer
Java Vertx Eventbus Bridge with Angular on client side
I have implemented vertx eventbus bridge on my client side(Angular) and it works to some extend. I mean some time I get the send message from my Java Vertx application on the client side but some times I get this below error. Can someone please help…

ZAJ
- 793
- 3
- 23
- 50
0
votes
1 answer
Vertx - This Route is exclusive for already mounted sub router issue
I am trying to create 2 Verticles one for the http server and another for my sockjs eventbus bridge. Then I am trying to deplowy the two Verticles in the Main app. For for some reason I get this error in my Sockjs…

ZAJ
- 793
- 3
- 23
- 50
0
votes
1 answer
How to merge multiple vertx web client responses
I am new to vertx and async programming.
I have 2 verticles communicating via an event bus as follows:
//API Verticle
public class SearchAPIVerticle extends AbstractVerticle {
public static final String GET_USEARCH_DOCS =…

Mega
- 1,304
- 5
- 22
- 37
0
votes
1 answer
Uni wait for Vertx eventBus message
I have two endpoints:
@GET
@Produces(MediaType.TEXT_PLAIN)
@Path("/waitForEvent")
public Uni

isADon
- 3,433
- 11
- 35
- 49