Skip to content

Commit

Permalink
[hotfix][docs] Correct method name in KeyedStateReaderFunction example
Browse files Browse the repository at this point in the history
This closes apache#9520
  • Loading branch information
alpinegizmo authored and StephanEwen committed Aug 26, 2019
1 parent 13b1b40 commit a55dc42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/dev/libs/state_processor_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class ReaderFunction extends KeyedStateReaderFunction<Integer, KeyedState> {
}

@Override
public void processKey(
public void readKey(
Integer key,
Context ctx,
Collector<KeyedState> out) throws Exception {
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/libs/state_processor_api.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class ReaderFunction extends KeyedStateReaderFunction<Integer, KeyedState> {
}

@Override
public void processKey(
public void readKey(
Integer key,
Context ctx,
Collector<KeyedState> out) throws Exception {
Expand Down

0 comments on commit a55dc42

Please sign in to comment.