Fixing code issues.
parent
761eedd731
commit
c2f1372652
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue