Packages

package common

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. 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()
  2. final case class InvalidCommandInput(message: String = "", cause: Throwable = null) extends Exception with Product with Serializable

    Error thrown when a connect command is not valid.

  3. 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.

  4. 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.

  5. 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

  1. object DataTypeProtoConverter

    Helper class for conversions between DataType and proto.DataType.

  2. object LiteralValueProtoConverter
  3. object StorageLevelProtoConverter

    Helper class for conversions between StorageLevel and proto.StorageLevel.

  4. object UdfPacket extends Serializable

Ungrouped