Event that fires when the matchmaker capacity check completes during the component mount phase.
Fires once on mount after the capacity check completes, regardless of outcome.
CustomEvent of type readiness with detail { isReady: boolean, checks: { instances: { ok: boolean, reason?: string } } }.
readiness
{ isReady: boolean, checks: { instances: { ok: boolean, reason?: string } } }
.addEventListener('readiness', (event) => console.log("Capacity check result:", event.detail.isReady, event.detail.checks)) Copy
.addEventListener('readiness', (event) => console.log("Capacity check result:", event.detail.isReady, event.detail.checks))
Event that fires when the matchmaker capacity check completes during the component mount phase.
Fires once on mount after the capacity check completes, regardless of outcome.
Emits
CustomEvent of type
readinesswith detail{ isReady: boolean, checks: { instances: { ok: boolean, reason?: string } } }.Example