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]) @native() @IntrinsicCandidate()
  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 dependencySources(request: DependencySourcesParams): BspEndpointResponse[DependencySourcesResult]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def exit(): Task[Unit]
  16. val exited: AtomicBoolean
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  19. def ifInitialized[T](originId: Option[String])(compute: BspComputation[T]): Task[BspResponse[T]]
  20. 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.

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

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

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

  47. def stopClientCaching(params: StopClientCachingParams): Task[Unit]
  48. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  49. def test(params: TestParams): BspEndpointResponse[TestResult]
  50. def toSbtBuildTarget(sbt: Sbt, scala: ScalaBuildTarget): SbtBuildTarget
  51. def toScalaBuildTarget(project: Project, instance: ScalaInstance): ScalaBuildTarget
  52. def toString(): String
    Definition Classes
    AnyRef → Any
  53. 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.

  54. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  55. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  56. 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
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped