()
| 39 | |
| 40 | type journalPageAppendedMsg struct { |
| 41 | requestID uint64 |
| 42 | entries []journalSummary |
| 43 | nextPage string |
| 44 | err error |
| 45 | } |
| 46 | |
| 47 | // journalPageRefreshedMsg is the top of the list read again for a change that arrived |
| 48 | // over the watch. It carries a bare counter of its own rather than riding the request |
| 49 | // lane, for the reason the appended page does: a live re-read must never cancel — or be |
nothing calls this directly
no test coverage detected