Bulldog Dispatch

A persistent on-call escalation pattern that does not stop paging until a real human accepts the job.

Bulldog dispatch is the practice of treating emergency tech assignment as a retry loop rather than a single notification. When a verified emergency call comes in, the system calls the on-call technician. If the tech does not accept within a short window, the system calls the second tech in the rotation, then the third, then loops back to the first — and it keeps going until someone accepts. The name comes from the disposition: stubborn, unrelenting, will not let go.

How it works

A standard Bulldog implementation has three moving parts. First, a verified emergency: the agent confirms with the caller that this is a true after-hours emergency, not a routine question. Second, an on-call rotation: a small ordered list of technicians (usually three) with phone numbers and acceptance preferences. Third, the retry policy: the time window between attempts, the maximum number of loops, and the fallback behavior if nobody accepts after the maximum.

Each attempt is a real phone call (or push notification) to the tech with a short summary of the emergency: who called, what they reported, and a one-button accept. Acceptance immediately stops the loop and connects the tech to the caller (or to the address, if they want to dispatch silently). No acceptance, the loop advances.

Why it matters

The single biggest failure mode in after-hours service is not “we did not answer the phone.” It is “we took the message and nobody on our end actually rolled.” Pages get missed, on-call schedules get out of date, and a single tech with their phone on silent silently breaks the entire dispatch chain. Bulldog removes the single-point-of-failure problem by treating dispatch as a loop, not a one-shot.

For the contractor, the practical outcome is that an emergency call at 2:47 AM produces an accepted dispatch by 2:51 AM — not a voicemail the owner finds at 7. For the customer, it is the difference between “they answered and someone is on the way” and “they answered, but I am still waiting.”

How Night Watch implements it

Night Watch ships Bulldog as either an included feature of the pilot bundle or as a $99 add-on to the base service. The default rotation is three techs, the default retry window is 90 seconds, and the loop continues for a configurable number of cycles before falling back to a manual page to the contractor’s primary number. Every attempt and every acceptance is logged in the call memo and visible in the contractor portal.

Related: 3x3 dispatch loop, persistent paging, emergency call triage.