Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/oak_commons/server_sent_event.ts>ServerSentEventTargetOptions

A set of APIs for handling HTTP and HTTPS requests with Deno 🐿️ 🦕
Very Popular
Go to Latest
interface ServerSentEventTargetOptions
import { type ServerSentEventTargetOptions } from "https://deno.land/x/oak_commons@0.4.0/server_sent_event.ts";

Properties

optional
keepAlive: boolean | number

Keep client connections alive by sending a comment event to the client at a specified interval. If true, then it polls every 30000 milliseconds (30 seconds). If set to a number, then it polls that number of milliseconds. The feature is disabled if set to false. It defaults to false.