class ServerSentEventStreamTarget
implements ServerSentEventTarget
extends EventTarget
import { ServerSentEventStreamTarget } from "https://deno.land/std@0.206.0/http/unstable_server_sent_event.ts";
An implementation of ServerSentEventTarget
that provides a
readable stream as a body of a response to establish a connection to a
client.
Constructors
new
ServerSentEventStreamTarget(unnamed 0?: ServerSentEventTargetOptions)Methods
asResponse(responseInit?: ResponseInit): Response
Returns a Response
which contains the body and headers needed
to initiate a SSE connection with the client.
asResponseInit(responseInit?: ResponseInit): [BodyInit, ResponseInit]
Returns a tuple which contains the BodyInit
and
ResponseInit
needed to create a response that will establish
a SSE connection with the client.
close(): Promise<void>
dispatchComment(comment: string): boolean
dispatchEvent(event: ServerSentEvent): boolean
dispatchEvent(event: CloseEvent | ErrorEvent): boolean
dispatchMessage(data: any): boolean
[Symbol.for("Deno.customInspect")](inspect: (value: unknown) => string)
[Symbol.for("nodejs.util.inspect.custom")]()
depth: number,
options: any,
inspect: (value: unknown, options?: unknown) => string,