(store: Arc<Store>)
| 114 | /// Spawn a monitor with the production defaults. |
| 115 | #[must_use] |
| 116 | pub fn spawn(store: Arc<Store>) -> Self { |
| 117 | Self::spawn_with(store, DEFAULT_CHECK_INTERVAL, DEFAULT_CHECK_TIMEOUT) |
| 118 | } |
| 119 | |
| 120 | /// Spawn a monitor with custom polling parameters. |
| 121 | /// |
no outgoing calls