mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
11 lines
203 B
Java
11 lines
203 B
Java
package com.cloud.consoleproxy.vnc.packet.client;
|
|
|
|
import java.io.DataOutputStream;
|
|
import java.io.IOException;
|
|
|
|
public interface ClientPacket {
|
|
|
|
void write(DataOutputStream os) throws IOException;
|
|
|
|
}
|