Packages

final class BloopBspServices extends AnyRef

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

Instance Constructors

  1. new BloopBspServices(callSiteState: State, client: JsonRpcClient, relativeConfigPath: RelativePath, stopBspServer: Cancelable, 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(request: WorkspaceBuildTargetsRequest): BspEndpointResponse[WorkspaceBuildTargetsResult]
  6. val clientInfo: Promise[BspClientInfo]
  7. val clientInfoTask: Task[BspClientInfo]
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  9. def compile(params: CompileParams): BspEndpointResponse[CompileResult]
  10. def compileProjects(userProjects: Seq[ProjectMapping], state: State, compileArgs: List[String], originId: Option[String], logger: BspServerLogger): BspResult[CompileResult]
  11. def dependencySources(request: DependencySourcesParams): BspEndpointResponse[DependencySourcesResult]
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def exit(shutdown: Exit): Task[Unit]
  15. val exited: AtomicBoolean
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def ifInitialized[T](originId: Option[String])(compute: BspComputation[T]): BspEndpointResponse[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(initializedBuildParams: InitializedBuildParams): Unit
  22. val isInitialized: Promise[BspResponse[Unit]]
  23. val isInitializedTask: Task[BspResponse[Unit]]
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. val isShutdown: Promise[BspResponse[Unit]]
  26. val isShutdownTask: Task[BspResponse[Unit]]
  27. def mapToProject(target: BuildTargetIdentifier, state: State): Either[String, ProjectMapping]
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def resources(request: ResourcesParams): BspEndpointResponse[ResourcesResult]
  32. def run(params: RunParams): BspEndpointResponse[RunResult]
  33. def scalaMainClasses(params: ScalaMainClassesParams): BspEndpointResponse[ScalaMainClassesResult]
  34. def scalaTestClasses(params: ScalaTestClassesParams): BspEndpointResponse[ScalaTestClassesResult]
  35. def scalacOptions(request: ScalacOptionsParams): BspEndpointResponse[ScalacOptionsResult]
  36. 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.

  37. final val services: Services
  38. def shutdown(shutdown: Shutdown): Unit
  39. def sources(request: SourcesParams): BspEndpointResponse[SourcesResult]
  40. def startDebugSession(params: DebugSessionParams): BspEndpointResponse[DebugSessionAddress]
  41. def stateAfterExecution: State

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

  42. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  43. def test(params: TestParams): BspEndpointResponse[TestResult]
  44. def toScalaBuildTarget(project: Project, instance: ScalaInstance): ScalaBuildTarget
  45. def toString(): String
    Definition Classes
    AnyRef → Any
  46. 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.

  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped