Package org.apache.flink.configuration
Interface WritableConfig
-
- All Known Implementing Classes:
Configuration
,DelegatingConfiguration
,TableConfig
,UnmodifiableConfiguration
@PublicEvolving public interface WritableConfig
Write access to a configuration object. Allows storing values described with meta information included inConfigOption
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> WritableConfig
set(ConfigOption<T> option, T value)
Stores a given value using the metadata included in theConfigOption
.
-
-
-
Method Detail
-
set
<T> WritableConfig set(ConfigOption<T> option, T value)
Stores a given value using the metadata included in theConfigOption
. The value should be readable back throughReadableConfig
.- Type Parameters:
T
- type of the value to be stored- Parameters:
option
- metadata informationvalue
- value to be stored- Returns:
- instance of this configuration for fluent API
-
-