Packages

package utils

Type Members

  1. class SourceSchema extends AnyRef

    Schema information about column names and their types that should be read from Delta table.

  2. final class SourceUtils extends AnyRef

    A utility class for Source connector

  3. class TransitiveOptional[T] extends AnyRef

    A container object which may or may not contain a non-null value.

    A container object which may or may not contain a non-null value. It supports chaining through

    An example of using TransitiveOptional class for method chaining where every method returns TransitiveOptional instance. In this chain, the next step will be executed ONLY if the previous one returned an empty TransitiveOptional

        return getSnapshotFromCheckpoint(checkpointSnapshotVersion)
               .or(this::getSnapshotFromStartingVersionOption)
               .or(this::getSnapshotFromStartingTimestampOption)
               .or(this::getHeadSnapshot)
               .get();
    

Ungrouped