mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-06 02:01:58 +02:00
16 lines
215 B
Java
16 lines
215 B
Java
package dev.slimevr.protocol;
|
|
|
|
import java.nio.ByteBuffer;
|
|
import java.util.UUID;
|
|
|
|
public interface GenericConnection {
|
|
|
|
|
|
UUID getConnectionId();
|
|
|
|
ConnectionContext getContext();
|
|
|
|
void send(ByteBuffer bytes);
|
|
|
|
}
|