All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mdoc.internal.livereload.LiveReload.scala Maven / Gradle / Ivy

There is a newer version: 2.2.24
Show newest version
package mdoc.internal.livereload

import java.nio.file.Path

/**
  * Interface of a LiveReload server http://livereload.com/api/protocol/
  */
trait LiveReload {

  /** Start this LiveReload server */
  def start(): Unit

  /** Stop this LiveReload server */
  def stop(): Unit

  /** Notify clients to reload this path */
  def reload(path: Path): Unit

  /** Alert clients with this message */
  def alert(message: String): Unit
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy