Choose what ArrayBufferView
is returned in the SocketHandler.data callback.
Symbol
SocketHandler
interface SocketHandler<Data = unknown, DataBinaryType extends BinaryType = 'buffer'>
When the socket fails to be created, this function is called.
The promise returned by
Bun.connect
rejects after this function is called.When
connectError
is specified, the rejected promise will not be added to the promise rejection queue (so it won't be reported as an unhandled promise rejection, since connectError handles it).When
connectError
is not specified, the rejected promise will be added to the promise rejection queue.