hey all, i need to refresh my screen aggregate when my tables updates , without human involvement , suggest any forge componets
Hi @Bharat La,
If you really need a forged component, I’d suggest taking a look at SSE push and exploring it further. From my experience, it’s a solid option when you’re looking for reliability and consistency. It integrates well, offers good performance, and is commonly used in similar scenarios. You can review its features, limitations, and documentation to see whether it fits your specific use case. It’s worth doing a quick comparison with other available options before finalizing, but SSE Push is definitely something I’d recommend evaluating as part of your solution approach. thankyou ,
Thank you for the answer Ramesh , think you foun d it well
In OutSystems, when looking for Forge components that allow automatic screen aggregate refresh upon table data updates, websocket-based tools can be highly effective. For instance:
Reactive Pusher Client: This component provides real-time functionality by triggering actions when there are changes in server-side data. You can integrate this and set up triggers to refresh the aggregate based on changes in your database. More details can be found here Reactive Pusher Client.
Firebase Plugin: Firebase can also be used for real-time updates, as it incorporates WebSockets. Upon detecting updates in your back-end database, Firebase can notify the relevant screen, and you can handle the refresh process to reload the aggregate accordingly. See configuration steps Firebase Plugin Component.
These tools are particularly effective in reactive and mobile applications where real-time updates are crucial, such as chat apps or dashboards. Both options rely on an event-driven approach instead of querying every few seconds, thus optimizing performance.
If u want to refresh aggregate when data in table changed. U must use websocket-based tools (Pusher, Firebase).
It's similar to send real time notifications.