Events and Synchronization
Overview
EventBus
Basic Usage
import { useEventSubscriber } from "uxp/components";
const LocationList = () => {
const refreshList = () => {
// Refresh the list
};
// Subscribe to event
useEventSubscriber('location:refresh', refreshList);
return <div>...</div>;
};Publishing Events
With Data
SignalR Real-Time Updates
Basic Usage
Cleanup
Next Steps
Last updated