Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vernedeng committed Jul 23, 2024
1 parent 5ed419b commit 31a7279
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
* Transform context.
*
* <p>configuration</p> is the global configuration when init transform processor
* <p>extParams</p> is the ext params of each data
* <p>runtimeParams</p> is the runtime outputs when processing by each component
*
* The priority is runtimeParams > extParams > configuration.
*/
public class Context {

private final Map<String, Object> configuration;
Expand Down

0 comments on commit 31a7279

Please sign in to comment.