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

org.zhongweixian.client.websocket.Connection Maven / Gradle / Ivy

The newest version!
package org.zhongweixian.client.websocket;


public interface Connection {

    void close();

    void sendText(String payload);

    void sendByte(byte[] bytes);

    void sendPing();

    String getId();

    boolean isActive();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy