Packages

final class BloopBspServices extends AnyRef

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

Instance Constructors

  1. new BloopBspServices(callSiteState: State, client: BloopLanguageClient, relativeConfigPath: RelativePath, stopBspServer: CancelablePromise[Unit], observer: Option[BehaviorSubject[State]], isClientConnected: AtomicBoolean, connectedBspClients: ConcurrentHashMap[BspClientInfo, AbsolutePath], computationScheduler: Scheduler, ioScheduler: Scheduler)

Type Members

  1. type ProjectMapping = (BuildTargetIdentifier, Project)

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 buildTargets(): BspEndpointResponse[WorkspaceBuildTargetsResult]
  6. def clean(params: CleanCacheParams): BspEndpointResponse[CleanCacheResult]
  7. val clientInfo: Promise[BspClientInfo]
  8. val clientInfoTask: Task[BspClientInfo]
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  10. def compile(params: CompileParams): BspEndpointResponse[CompileResult]
  11. def compileProjects(userProjects: Seq[ProjectMapping], state: State, compileArgs: List[String], originId: Option[String], logger: BspServerLogger): BspResult[CompileResult]
  12. def dependencyModules(request: DependencyModulesParams): BspEndpointResponse[DependencyModulesResult]
  13. def dependencySources(request: DependencySourcesParams): BspEndpointResponse[DependencySourcesResult]
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def exit(): Task[Unit]
  17. val exited: AtomicBoolean
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  20. def ifInitialized[T](originId: Option[String])(compute: BspComputation[T]): Task[BspResponse[T]]
  21. def initialize(params: InitializeBuildParams): BspEndpointResponse[InitializeBuildResult]

    Implements the initialize method that is the first pass of the Client-Server handshake.

    Implements the initialize method that is the first pass of the Client-Server handshake.

    params

    The params request that we get from the client.

    returns

    An async computation that returns the response to the client.

  22. def initialized(): Unit
  23. def inverseSources(request: InverseSourcesParams): BspEndpointResponse[InverseSourcesResult]
  24. val isInitialized: Promise[BspResponse[Unit]]
  25. val isInitializedTask: Task[BspResponse[Unit]]
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. val isShutdown: Promise[BspResponse[Unit]]
  28. val isShutdownTask: Task[BspResponse[Unit]]
  29. def javacOptions(request: JavacOptionsParams): BspEndpointResponse[JavacOptionsResult]
  30. def jvmEnvironment(targets: Seq[BuildTargetIdentifier]): BspEndpointResponse[List[JvmEnvironmentItem]]
  31. def jvmRunEnvironment(params: JvmRunEnvironmentParams): BspEndpointResponse[JvmRunEnvironmentResult]
  32. def jvmTestEnvironment(params: JvmTestEnvironmentParams): BspEndpointResponse[JvmTestEnvironmentResult]
  33. def mapToProject(target: BuildTargetIdentifier, state: State): Either[String, ProjectMapping]
  34. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  37. def outputPaths(request: OutputPathsParams): BspEndpointResponse[OutputPathsResult]
  38. def resources(request: ResourcesParams): BspEndpointResponse[ResourcesResult]
  39. def run(params: RunParams): BspEndpointResponse[RunResult]
  40. def scalaMainClasses(params: ScalaMainClassesParams): BspEndpointResponse[ScalaMainClassesResult]
  41. def scalaTestClasses(params: ScalaTestClassesParams): BspEndpointResponse[ScalaTestClassesResult]
  42. def scalacOptions(request: ScalacOptionsParams): BspEndpointResponse[ScalacOptionsResult]
  43. def schedule[T](t: BspEndpointResponse[T]): BspEndpointResponse[T]

    Schedule the async response handlers to run on the default computation thread pool and leave the serialization/deserialization work (bsp4s library work) to the IO thread pool.

    Schedule the async response handlers to run on the default computation thread pool and leave the serialization/deserialization work (bsp4s library work) to the IO thread pool. This is critical for performance.

  44. final val services: BloopRpcServices
  45. def shutdown(): Unit
  46. def sources(request: SourcesParams): BspEndpointResponse[SourcesResult]
  47. def startDebugSession(params: DebugSessionParams): BspEndpointResponse[DebugSessionAddress]
  48. def stateAfterExecution: State

    Returns the final state after BSP commands that can be cached by bloop.

  49. def stopClientCaching(params: StopClientCachingParams): Task[Unit]
  50. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  51. def test(params: TestParams): BspEndpointResponse[TestResult]
  52. def toSbtBuildTarget(sbt: Sbt, scala: ScalaBuildTarget): SbtBuildTarget
  53. def toScalaBuildTarget(project: Project, instance: ScalaInstance): ScalaBuildTarget
  54. def toString(): String
    Definition Classes
    AnyRef → Any
  55. def unregisterClient: Option[BspClientInfo]

    Unregisters this client if the BSP services registered one.

    Unregisters this client if the BSP services registered one.

    This method is typically called from BspServer when a client is disconnected for any reason.

  56. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  57. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  58. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped