main

square/leakcanary

Last updated at: 29/12/2023 09:37

InstallableWatcher.kt

TLDR

This file defines an interface called InstallableWatcher in the leakcanary package. This interface has two methods install() and uninstall().

Methods

install

This method is responsible for installing the watcher.

uninstall

This method is responsible for uninstalling the watcher.

package leakcanary

interface InstallableWatcher {

  fun install()

  fun uninstall()
}