Package

polynote.kernel

remote

Permalink

package remote

Visibility
  1. Public
  2. All

Type Members

  1. final case class Announce(reqId: Int, remoteAddress: String) extends RemoteRequestResponse with Product with Serializable

    Permalink
  2. final case class CancelAllRequest(reqId: Int) extends RemoteRequest with Product with Serializable

    Permalink
  3. final case class CompletionsAtRequest(reqId: Int, id: CellID, pos: Int) extends RemoteRequest with Product with Serializable

    Permalink
  4. final case class CompletionsAtResponse(reqId: Int, completions: List[Completion]) extends RemoteRequestResponse with Product with Serializable

    Permalink
  5. final case class ErrorResponse(reqId: Int, err: Throwable) extends RemoteRequestResponse with Product with Serializable

    Permalink
  6. final case class GetHandleDataRequest(reqId: Int, sessionId: Int, handleType: HandleType, handle: Int, count: Int) extends RemoteRequest with Product with Serializable

    Permalink
  7. final case class GetHandleDataResponse(reqId: Int, data: Array[ByteVector32]) extends RemoteRequestResponse with Product with Serializable

    Permalink
  8. sealed trait IdentifyChannel extends AnyRef

    Permalink
  9. final case class KernelInfoRequest(reqId: Int) extends RemoteRequest with Product with Serializable

    Permalink
  10. final case class KernelInfoResponse(reqId: Int, info: KernelInfo) extends RemoteRequestResponse with Product with Serializable

    Permalink
  11. final case class KernelStatusResponse(status: KernelStatusUpdate) extends RemoteResponse with Product with Serializable

    Permalink
  12. final case class ModifyStreamRequest(reqId: Int, sessionId: Int, handleId: Int, ops: List[TableOp]) extends RemoteRequest with Product with Serializable

    Permalink
  13. final case class ModifyStreamResponse(reqId: Int, result: Option[StreamingDataRepr]) extends RemoteRequestResponse with Product with Serializable

    Permalink
  14. final case class ParametersAtRequest(reqId: Int, id: CellID, pos: Int) extends RemoteRequest with Product with Serializable

    Permalink
  15. final case class ParametersAtResponse(reqId: Int, signatures: Option[Signatures]) extends RemoteRequestResponse with Product with Serializable

    Permalink
  16. final case class QueueCellRequest(reqId: Int, id: CellID) extends RemoteRequest with Product with Serializable

    Permalink
  17. final case class ReleaseHandleRequest(reqId: Int, sessionId: Int, handleType: HandleType, handleId: Int) extends RemoteRequest with Product with Serializable

    Permalink
  18. class RemoteKernel[ServerAddress] extends Kernel

    Permalink
  19. class RemoteKernelClient extends AnyRef

    Permalink
  20. sealed trait RemoteRequest extends AnyRef

    Permalink
  21. abstract class RemoteRequestCompanion[T] extends AnyRef

    Permalink
  22. sealed trait RemoteRequestResponse extends RemoteResponse

    Permalink
  23. sealed trait RemoteResponse extends AnyRef

    Permalink
  24. abstract class RemoteResponseCompanion[T <: RemoteResponse] extends AnyRef

    Permalink
  25. final case class ResultResponse(reqId: Int, result: Result) extends RemoteRequestResponse with Product with Serializable

    Permalink
  26. final case class ResultsResponse(reqId: Int, results: List[Result]) extends RemoteRequestResponse with Product with Serializable

    Permalink
  27. final case class RunCompleteResponse(reqId: Int) extends RemoteRequestResponse with Product with Serializable

    Permalink
  28. final case class ShutdownRequest(reqId: Int) extends RemoteRequest with Product with Serializable

    Permalink
  29. final case class ShutdownResponse(reqId: Int) extends RemoteRequestResponse with Product with Serializable

    Permalink
  30. class SocketTransport extends Transport[InetSocketAddress]

    Permalink

    A transport that communicates over a socket with a kernel process it's deployed via spark-submit.

    A transport that communicates over a socket with a kernel process it's deployed via spark-submit. Requires that spark-submit is a valid executable command on the path.

  31. class SocketTransportClient extends TransportClient

    Permalink
  32. class SocketTransportServer extends TransportServer[InetSocketAddress]

    Permalink
  33. final case class StartupRequest(reqId: Int, notebook: Notebook, globalVersion: Int, config: PolynoteConfig) extends RemoteRequest with Product with Serializable

    Permalink
  34. final case class StatusRequest(reqId: Int) extends RemoteRequest with Product with Serializable

    Permalink
  35. final case class StatusResponse(reqId: Int, status: KernelBusyState) extends RemoteRequestResponse with Product with Serializable

    Permalink
  36. trait Transport[ServerAddress] extends AnyRef

    Permalink
  37. trait TransportClient extends AnyRef

    Permalink
  38. trait TransportServer[ServerAddress] extends AnyRef

    Permalink
  39. final case class UnitResponse(reqId: Int) extends RemoteRequestResponse with Product with Serializable

    Permalink
  40. final case class ValuesRequest(reqId: Int) extends RemoteRequest with Product with Serializable

    Permalink
  41. final case class ValuesResponse(reqId: Int, values: List[ResultValue]) extends RemoteRequestResponse with Product with Serializable

    Permalink

Value Members

  1. object Announce extends RemoteResponseCompanion[Announce] with Serializable

    Permalink
  2. object CancelAllRequest extends RemoteRequestCompanion[CancelAllRequest] with Serializable

    Permalink
  3. object CompletionsAtRequest extends RemoteRequestCompanion[CompletionsAtRequest] with Serializable

    Permalink
  4. object CompletionsAtResponse extends RemoteResponseCompanion[CompletionsAtResponse] with Serializable

    Permalink
  5. object ErrorResponse extends RemoteResponseCompanion[ErrorResponse] with Serializable

    Permalink
  6. object GetHandleDataRequest extends RemoteRequestCompanion[GetHandleDataRequest] with Serializable

    Permalink
  7. object GetHandleDataResponse extends RemoteResponseCompanion[GetHandleDataResponse] with Serializable

    Permalink
  8. object IdentifyChannel

    Permalink
  9. object KernelInfoRequest extends RemoteRequestCompanion[KernelInfoRequest] with Serializable

    Permalink
  10. object KernelInfoResponse extends RemoteResponseCompanion[KernelInfoResponse] with Serializable

    Permalink
  11. object KernelStatusResponse extends RemoteResponseCompanion[KernelStatusResponse] with Serializable

    Permalink
  12. object MainChannel extends IdentifyChannel with Product with Serializable

    Permalink
  13. object ModifyStreamRequest extends RemoteRequestCompanion[ModifyStreamRequest] with Serializable

    Permalink
  14. object ModifyStreamResponse extends RemoteResponseCompanion[ModifyStreamResponse] with Serializable

    Permalink
  15. object NotebookUpdatesChannel extends IdentifyChannel with Product with Serializable

    Permalink
  16. object ParametersAtRequest extends RemoteRequestCompanion[ParametersAtRequest] with Serializable

    Permalink
  17. object ParametersAtResponse extends RemoteResponseCompanion[ParametersAtResponse] with Serializable

    Permalink
  18. object QueueCellRequest extends RemoteRequestCompanion[QueueCellRequest] with Serializable

    Permalink
  19. object ReleaseHandleRequest extends RemoteRequestCompanion[ReleaseHandleRequest] with Serializable

    Permalink
  20. object RemoteKernel extends Service

    Permalink
  21. object RemoteKernelClient extends App

    Permalink
  22. object RemoteRequest

    Permalink
  23. object RemoteResponse

    Permalink
  24. object ResultResponse extends RemoteResponseCompanion[ResultResponse] with Serializable

    Permalink
  25. object ResultsResponse extends RemoteResponseCompanion[ResultsResponse] with Serializable

    Permalink
  26. object RunCompleteResponse extends RemoteResponseCompanion[RunCompleteResponse] with Serializable

    Permalink
  27. object ShutdownRequest extends RemoteRequestCompanion[ShutdownRequest] with Serializable

    Permalink
  28. object ShutdownResponse extends RemoteResponseCompanion[ShutdownResponse] with Serializable

    Permalink
  29. object SocketTransport

    Permalink
  30. object SocketTransportClient

    Permalink
  31. object SocketTransportServer

    Permalink
  32. object StartupRequest extends RemoteRequestCompanion[StartupRequest] with Serializable

    Permalink
  33. object StatusRequest extends RemoteRequestCompanion[StatusRequest] with Serializable

    Permalink
  34. object StatusResponse extends RemoteResponseCompanion[StatusResponse] with Serializable

    Permalink
  35. object UnitResponse extends RemoteResponseCompanion[UnitResponse] with Serializable

    Permalink
  36. object Update

    Permalink
  37. object ValuesRequest extends RemoteRequestCompanion[ValuesRequest] with Serializable

    Permalink
  38. object ValuesResponse extends RemoteResponseCompanion[ValuesResponse] with Serializable

    Permalink

Ungrouped