
org.zhongweixian.client.websocket.Connection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of websocket-api Show documentation
Show all versions of websocket-api Show documentation
Demo project for netty-api
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