package common
- Alphabetic
- Public
- Protected
Type Members
- case class ForeachWriterPacket(foreachWriter: AnyRef, datasetEncoder: AgnosticEncoder[_]) extends Serializable with Product
A wrapper class around the foreachWriter and it's Input/Output AgnosticEncoder(s).
A wrapper class around the foreachWriter and it's Input/Output AgnosticEncoder(s).
This class is shared between the client and the server to allow for serialization and deserialization of the JVM object.
- foreachWriter
The actual foreachWriter from client
- datasetEncoder
An AgnosticEncoder for the input row
- Annotations
- @SerialVersionUID()
- final case class InvalidCommandInput(message: String = "", cause: Throwable = null) extends Exception with Product with Serializable
Error thrown when a connect command is not valid.
- final case class InvalidPlanInput(message: String = "", cause: Throwable = None.orNull) extends Exception with Product with Serializable
Error thrown when a connect plan is not valid.
- case class StreamingListenerPacket(id: String, listener: AnyRef) extends Serializable with Product
A wrapper class around the StreamingQueryListener and an id associated with it.
A wrapper class around the StreamingQueryListener and an id associated with it.
This class is shared between the client and the server to allow for serialization and deserialization of the JVM object. We'll need to cache a mapping between the id and listener object on server side in order to identify the correct server side listener object.
- id
The id for the StreamingQueryListener.
- listener
The StreamingQueryListener instance.
- case class UdfPacket(function: AnyRef, inputEncoders: Seq[AgnosticEncoder[_]], outputEncoder: AgnosticEncoder[_]) extends Serializable with Product
A wrapper class around the UDF and it's Input/Output AgnosticEncoder(s).
A wrapper class around the UDF and it's Input/Output AgnosticEncoder(s).
This class is shared between the client and the server to allow for serialization and deserialization of the JVM object.
- function
The UDF
- inputEncoders
A list of AgnosticEncoder(s) for all input arguments of the UDF
- outputEncoder
An AgnosticEncoder for the output of the UDF
- Annotations
- @SerialVersionUID()
Value Members
- object DataTypeProtoConverter
Helper class for conversions between DataType and proto.DataType.
- object LiteralValueProtoConverter
- object StorageLevelProtoConverter
Helper class for conversions between StorageLevel and proto.StorageLevel.
- object UdfPacket extends Serializable