. * * @package LibreNMS * @link https://www.librenms.org * @copyright 2020 Tony Murray * @author Tony Murray */ namespace LibreNMS\Interfaces\Polling; use Illuminate\Database\Eloquent\Collection; interface MempoolsPolling { /** * @param Collection $mempools * @return Collection */ public function pollMempools(Collection $mempools); }