Packages

object CompilationEvent

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CompilationEvent
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Diagnostic(projectUri: Uri, problem: Problem, clear: Boolean) extends CompilationEvent with Product with Serializable

    Defines all information required to report a diagnostic to a client.

    Defines all information required to report a diagnostic to a client.

    projectUri

    The URI uniquely representing the project to the BSP client.

    problem

    The problem we're reporting to the client.

    clear

    Whether we should clear or not diagnostics in the client for the problem URI.

  2. case class EndCompilation(projectName: String, projectUri: Uri, taskId: TaskId, problems: Seq[Problem], code: StatusCode) extends CompilationEvent with Product with Serializable

    Defines all information required to report a compile end notification to a client.

    Defines all information required to report a compile end notification to a client.

    The compile end notification must always the same task id than its counterpart, defined by StartCompilation.

    projectName

    The project name, useful when enriching messages to the client.

    projectUri

    The URI uniquely representing the project to the BSP client.

    taskId

    The task id to use for this publication.

    problems

    The sequence of problems that were found during compilation.

    code

    The status code associated with the finished compilation event.

  3. case class NoDiagnostic(projectUri: Uri, file: File) extends CompilationEvent with Product with Serializable

    Defines all information required to report a no diagnostic to a client.

    Defines all information required to report a no diagnostic to a client.

    projectUri

    The URI uniquely representing the project to the BSP client.

    file

    The file we're cleaning all diagnostics at.

  4. case class ProgressCompilation(projectName: String, projectUri: Uri, taskId: TaskId, progress: Long, total: Long, percentage: Long) extends CompilationEvent with Product with Serializable

    Defines all information required to report a compile progress notification to a client.

    Defines all information required to report a compile progress notification to a client.

    The compile progress notification must always the same task id than StartCompilation and EndCompilation.

    projectName

    The project name, useful when enriching messages to the client.

    projectUri

    The URI uniquely representing the project to the BSP client.

    taskId

    The task id to use for this publication.

  5. case class StartCompilation(projectName: String, projectUri: Uri, msg: String, taskId: TaskId) extends CompilationEvent with Product with Serializable

    Defines all information required to report a compile start notification to a client.

    Defines all information required to report a compile start notification to a client.

    The compile start notification must always have a corresponding compile end notification, defined by EndCompilation.

    projectName

    The project name, useful when enriching messages to the client.

    projectUri

    The URI uniquely representing the project to the BSP client.

    msg

    The message summarizing the triggered incremental compilation cycle.

    taskId

    The task id to use for this publication.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped