Interface SnowflakeSinkContext
-
- All Known Implementing Classes:
DefaultSnowflakeSinkContext
@PublicEvolving public interface SnowflakeSinkContextThis context provides information forSnowflakeRowSerializationSchema.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAppId()org.apache.flink.api.connector.sink2.Sink.InitContextgetInitContext()Get the current init context in sink.SnowflakeWriterConfiggetWriterConfig()Get the write options forSnowflakeSink.booleanisFlushOnCheckpoint()longprocessTime()Get the current process time in Flink.
-
-
-
Method Detail
-
getInitContext
org.apache.flink.api.connector.sink2.Sink.InitContext getInitContext()
Get the current init context in sink.
-
processTime
long processTime()
Get the current process time in Flink.
-
getWriterConfig
SnowflakeWriterConfig getWriterConfig()
Get the write options forSnowflakeSink.
-
getAppId
String getAppId()
-
isFlushOnCheckpoint
boolean isFlushOnCheckpoint()
-
-