WithPageId sets a page ID from which the check command starts to check
(pageId uint64)
| 268 | |
| 269 | // WithPageId sets a page ID from which the check command starts to check |
| 270 | func WithPageId(pageId uint64) CheckOption { |
| 271 | return func(c *checkConfig) { |
| 272 | c.pageId = pageId |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | // KVStringer allows to prepare human-readable diagnostic messages. |
| 277 | type KVStringer interface { |
no outgoing calls