Packages

trait WriteBuilder extends AnyRef

An interface for building the Write. Implementations can mix in some interfaces to support different ways to write data to data sources.

Unless modified by a mixin interface, the Write configured by this builder is to append data without affecting existing data.

Annotations
@Evolving()
Source
WriteBuilder.java
Since

3.0.0

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

Value Members

  1. def build(): Write

    Returns a logical Write shared between batch and streaming.

    Returns a logical Write shared between batch and streaming.

    Since

    3.2.0

Deprecated Value Members

  1. def buildForBatch(): BatchWrite

    Returns a BatchWrite to write data to batch source.

    Returns a BatchWrite to write data to batch source.

    Annotations
    @Deprecated
    Deprecated

    (Since version 3.2.0)

  2. def buildForStreaming(): StreamingWrite

    Returns a StreamingWrite to write data to streaming source.

    Returns a StreamingWrite to write data to streaming source.

    Annotations
    @Deprecated
    Deprecated

    (Since version 3.2.0)