Searched refs:sendChunk (Results 1 – 3 of 3) sorted by relevance
35 sendChunk: (chunk: Uint8Array) => Promise<void>; property70 async sendChunk(chunk: Uint8Array): Promise<void> { method in WebSerialTransport72 return this.activePortConnectionConnection.sendChunk(chunk);141 async function sendChunk(chunk: Uint8Array) {148 const connection: PortConnection = {sendChunk, chunks, errors};
74 const sendPromise = transport.sendChunk(data);87 await transport.sendChunk(data);
20 sendChunk(chunk: Uint8Array): Promise<void>; method