()
| 198 | // Internals. |
| 199 | |
| 200 | @GuardedBy("this") |
| 201 | final void deliver() { |
| 202 | if (delivering) { |
| 203 | // Don't re-enter. |
| 204 | return; |
| 205 | } |
| 206 | delivering = true; |
| 207 | while (canDeliver()) { |
| 208 | deliverInternal(); |
| 209 | } |
| 210 | delivering = false; |
| 211 | } |
| 212 | |
| 213 | @GuardedBy("this") |
| 214 | private final boolean canDeliver() { |
no test coverage detected