@Evolving
public interface WriteBuilder
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.
| Modifier and Type | Method and Description | 
|---|---|
| default Write | build()Returns a logical  Writeshared between batch and streaming. | 
| default BatchWrite | buildForBatch()Deprecated. 
 use  build()instead. | 
| default StreamingWrite | buildForStreaming()Deprecated. 
 use  build()instead. | 
default Write build()
Write shared between batch and streaming.@Deprecated default BatchWrite buildForBatch()
build() instead.BatchWrite to write data to batch source.@Deprecated default StreamingWrite buildForStreaming()
build() instead.StreamingWrite to write data to streaming source.