All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.strmprivacy.driver.common.WebSocketConsumer Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package io.strmprivacy.driver.common;

import org.eclipse.jetty.websocket.api.WebSocketAdapter;

import java.util.concurrent.CountDownLatch;

public class WebSocketConsumer extends WebSocketAdapter {
    private final CountDownLatch closureLatch = new CountDownLatch(1);

    public void awaitClosure() throws InterruptedException {
        closureLatch.await();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy