codev / src /cli /transports /SSETransport.ts
chenbhao's picture
chore: remove obsolete test and vendor source, add CLI SDK docs
b7c4c8f
Raw
History Blame Contribute Delete
609 Bytes
/**
* SSE Transport
* This transport uses Server-Sent Events for communication
*/
export class SSETransport {
constructor() {
console.error('SSETransport not implemented');
}
async connect(): Promise<void> {
console.error('SSETransport.connect not implemented');
}
async disconnect(): Promise<void> {
console.error('SSETransport.disconnect not implemented');
}
async send(data: any): Promise<void> {
console.error('SSETransport.send not implemented');
}
async receive(): Promise<any> {
console.error('SSETransport.receive not implemented');
return null;
}
}