Skip to content

v0.44.0

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Mar 14:06
· 109 commits to main since this release

🚀 Event-Source Ping Interval

New feature to keep Event Iterator alive.
RPCHandler periodically sends a ping comment to the client. You can configure this behavior using the following options:

  • eventSourcePingEnabled (default: true) – Enables or disables pings.
  • eventSourcePingInterval (default: 5000) – Time between pings (in milliseconds).
  • eventSourcePingContent (default: '') – Custom content for ping messages.
const result = await handler.handle(request, {
  eventSourcePingEnabled: true,
  eventSourcePingInterval: 5000, // 5 seconds
  eventSourcePingContent: '',
})

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub