. * * @link http://librenms.org * * @copyright 2021 Janno Schouwenburg * @author Janno Schouwenburg */ namespace LibreNMS\Interfaces\Polling\Sensors; interface WirelessChannelPolling { /** * Poll Wireless Channel. Type is channel. * The returned array should be sensor_id => value pairs * * @param array $sensors Array of sensors needed to be polled * @return array of polled data */ public function pollWirelessChannel(array $sensors); }