Fixing code issues.
parent
761eedd731
commit
c2f1372652
|
@ -30,7 +30,7 @@ public class WebsocketClientParticle extends AbstractVerticle {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void start() throws Exception {
|
public void start() {
|
||||||
this.client = getVertx()
|
this.client = getVertx()
|
||||||
.createHttpClient();
|
.createHttpClient();
|
||||||
new WebSocketClientImpl((VertxInternal) getVertx(), new HttpClientOptions(), new CloseFuture())
|
new WebSocketClientImpl((VertxInternal) getVertx(), new HttpClientOptions(), new CloseFuture())
|
||||||
|
@ -67,7 +67,7 @@ public class WebsocketClientParticle extends AbstractVerticle {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stop() throws Exception {
|
public void stop() {
|
||||||
isShuttingDownActivated = true;
|
isShuttingDownActivated = true;
|
||||||
client.close();
|
client.close();
|
||||||
synchronized (runningMonitor) {
|
synchronized (runningMonitor) {
|
||||||
|
|
Loading…
Reference in New Issue