ParquetWriter

com.github.mjakubowski84.parquet4s.ParquetWriter
See theParquetWriter companion object
trait ParquetWriter[T] extends Closeable

Type class that allows to write data which schema is represented by type T. Path and options are meant to be set by implementation of the trait.

Type parameters

T

schema of data to write

Attributes

Companion
object
Graph
Supertypes
trait Closeable
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def write(data: Iterable[T]): Unit

Appends data chunk to file contents.

Appends data chunk to file contents.

Value parameters

data

data to write

Attributes

def write(data: T*): Unit

Appends data chunk to file contents.

Appends data chunk to file contents.

Value parameters

data

data to write

Attributes

Inherited methods

def close(): Unit

Attributes

Inherited from:
Closeable