Interface ScanResultProcessor
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ScanResultProcessor
A callback that can be used to processes the result of an asynchronous scan after scanning has completed and any MatchProcessors have been run.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processScanResult(ScanResult scanResult)
Process the result of an asynchronous scan after scanning has completed and any MatchProcessors have been run.
-
-
-
Method Detail
-
processScanResult
void processScanResult(ScanResult scanResult)
Process the result of an asynchronous scan after scanning has completed and any MatchProcessors have been run.
-
-