Interface EchoDetector

All Known Implementing Classes:
JamieEchoDetector, SimpleEchoDetector

public interface EchoDetector
Interface to classes which do the actual work of detecting echoes.
Author:
Doug Gillespie
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Initialise the echo detector
    boolean
    isEcho(ClickDetection clickDetection)
    Test to see if a single click is an echo or not.
  • Method Details

    • initialise

      void initialise()
      Initialise the echo detector
    • isEcho

      boolean isEcho(ClickDetection clickDetection)
      Test to see if a single click is an echo or not.
      Parameters:
      clickDetection - a single click detection.
      Returns:
      true if the click is an echo.