Skip to content

Commit

Permalink
step
Browse files Browse the repository at this point in the history
  • Loading branch information
astubbs committed May 13, 2022
1 parent eb3675c commit 16b13c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ interface RecordConsumer<K, V> extends java.util.function.Consumer<PollContext<K
}

@FunctionalInterface
interface RecordFunction<T, R> extends java.util.function.Function<T, R> {
interface RecordFunction<K, V, R> extends java.util.function.Function<PollContext<K, V>, R> {


/**
Expand All @@ -40,7 +40,7 @@ interface RecordFunction<T, R> extends java.util.function.Function<T, R> {
* @return the function result
*/
@Override
R apply(T t);
R apply(PollContext t);

}
}

0 comments on commit 16b13c7

Please sign in to comment.