Hands-On Reactive Application with Angular and Quarkus

Using WebSockets to push updates to a frontend application

Catalin Patrut

--

Introduction

Often we are put in the situation where we need to update a table of elements when a new entry is added without refreshing the browser. While there are some solutions such as constant pooling, they add too much pressure on our servers. Another way of doing it is by using a Web Sockets or Server-Sent Events.

--

--