Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 1.63 KB

PubSub.md

File metadata and controls

27 lines (18 loc) · 1.63 KB

AZURE WEB PUBSUB

The mainline scenarios are also focused on severless so we can handle your long running websocket connections and trigger HTTP calls to any backend. It can be azure functions or any addressable HTTP endpoint.

LEARN

PUBSUB V SIGNALR

Feature SignalR PubSub Comments
Requires Azure No Yes n/a
Dev SignalR core lib is part of ASP.NET Core Package install n/a
Client No client or protocol requirement Bring your own websocket lib Ref David Fowler - https://twitter.com/davidfowl/status/1387885009625780228
Graceful degredation Downgrades protocols WebSocket only SR will degrade through various protocols depending on client capability, PubSub will not. No long polling or server sent event fallback for pubsub. Pure web socket.

MISC