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

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

There is a newer version: 2.1.5
Show 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 - 2024 Weber Informatics LLC | Privacy Policy