Package org.apache.flink.formats.avro
Interface SchemaCoder.SchemaCoderProvider
-
- All Superinterfaces:
Serializable
- Enclosing interface:
- SchemaCoder
public static interface SchemaCoder.SchemaCoderProvider extends Serializable
Provider forSchemaCoder
. It allows creating multiple instances of client in parallel operators without serializing it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SchemaCoder
get()
Creates a new instance ofSchemaCoder
.
-
-
-
Method Detail
-
get
SchemaCoder get()
Creates a new instance ofSchemaCoder
. Each time it should create a new instance, as it will be called on multiple nodes.- Returns:
- new instance
SchemaCoder
-
-