Skip to main content
Go to Latest
class ServerSentEventStreamTarget
import { ServerSentEventStreamTarget } from "https://deno.land/std@0.181.0/http/mod.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)

Properties

readonly
closed: boolean

Methods

Returns a Response which contains the body and headers needed to initiate a SSE connection with the client.

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
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,
)