Skip to main content

Poll and cancel

Use cancel(reason) for terminal early stops that should not call onEnd.

Poll and cancelLive

Poll and cancel

0/3 checks
idle
  1. waiting for backend status
callback: async (_snapshot, controls) => {
const auction = await api.getAuction(auctionId);
if (auction.status === 'sold') controls.cancel('sold');
}