Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import org.apache.kafka.common.serialization.Deserializer;
import org.apache.kafka.common.serialization.Serializer;
import org.apache.kafka.streaming.processor.Processor;
import org.apache.kafka.streaming.processor.ProcessorDef;

/**
* KStream is an abstraction of a stream of key-value pairs.
Expand Down Expand Up @@ -83,10 +83,10 @@ public interface KStream<K, V> {
/**
* Creates a new windowed stream using a specified window instance.
*
* @param window the instance of Window
* @param windowDef the instance of Window
* @return KStream
*/
KStreamWindowed<K, V> with(Window<K, V> window);
KStreamWindowed<K, V> with(WindowDef<K, V> windowDef);

/**
* Creates an array of streams from this stream. Each stream in the array coresponds to a predicate in
Expand Down Expand Up @@ -133,7 +133,7 @@ public interface KStream<K, V> {
/**
* Processes all elements in this stream by applying a processor.
*
* @param processor the class of Processor
* @param processorDef the class of ProcessorDef
*/
<K1, V1> KStream<K1, V1> process(Processor<K, V> processor);
<K1, V1> KStream<K1, V1> process(ProcessorDef processorDef);
}

This file was deleted.

Loading