override fun onBatchScanResults()

in PoC/android/app/src/main/java/com/epam/crowdresitance/bluetooth/BtScan.kt [72:79]


        override fun onBatchScanResults(results: List<ScanResult?>) {
            super.onBatchScanResults(results)
            for (result in results) {
                if (result != null) {
                    processResult(result)
                }
            }
        }