Browse Source

MINOR: MyProcessor doc example should implement, not extend `Processor`

Author: Michael G. Noll <michael@confluent.io>

Reviewers: Eno Thereska, Guozhang Wang

Closes #2723 from miguno/trunk-streams-docs-typo-fix
pull/2718/merge
Michael G. Noll 8 years ago committed by Guozhang Wang
parent
commit
666beecec8
  1. 2
      docs/streams.html

2
docs/streams.html

@ -307,7 +307,7 @@ @@ -307,7 +307,7 @@
</p>
<pre>
public class MyProcessor extends Processor&lt;String, String&gt; {
public class MyProcessor implements Processor&lt;String, String&gt; {
private ProcessorContext context;
private KeyValueStore&lt;String, Long&gt; kvStore;

Loading…
Cancel
Save