NetConnectivityBinding import { NetConnectivityBinding } from "destack:net/binding"; Network connectivity binding family. export interface NetConnectivityBinding { read(): Result; openWatch(): Result; closeWatch(watch: NetworkWatchHandle): Result; readWatch(watch: NetworkWatchHandle, timeoutNs: uint64): Result; tryReadWatch(watch: NetworkWatchHandle): Result; } language/library/src/net/binding/connectivity.ds:74:122 Members read(): Result Read network connectivity. openWatch(): Result Open network connectivity watch stream. closeWatch(watch: NetworkWatchHandle): Result Close network connectivity watch stream. readWatch(watch: NetworkWatchHandle, timeoutNs: uint64): Result Wait for one network connectivity event. tryReadWatch(watch: NetworkWatchHandle): Result Poll one network connectivity event without blocking.