Fixing code issues.

master
Tomasz Polgrabia 2024-12-27 20:15:55 +01:00
parent 761eedd731
commit c2f1372652
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ public class WebsocketClientParticle extends AbstractVerticle {
}
@Override
public void start() throws Exception {
public void start() {
this.client = getVertx()
.createHttpClient();
new WebSocketClientImpl((VertxInternal) getVertx(), new HttpClientOptions(), new CloseFuture())
@ -67,7 +67,7 @@ public class WebsocketClientParticle extends AbstractVerticle {
}
@Override
public void stop() throws Exception {
public void stop() {
isShuttingDownActivated = true;
client.close();
synchronized (runningMonitor) {