Skip to content

Commit

Permalink
removed my debug temp method
Browse files Browse the repository at this point in the history
  • Loading branch information
sv3ndk committed Sep 15, 2017
1 parent 3757c42 commit e7aa8fc
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/test/scala/MockedStreamsSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -227,18 +227,6 @@ class MockedStreamsSpec extends FlatSpec with Matchers {
.to(strings, ints, OutputATopic)
}

def topology1Outputbis(builder: KStreamBuilder) = {
val streamA = builder.stream(strings, ints, InputATopic)
val streamB = builder.stream(strings, ints, InputBTopic)

val table = streamB.groupByKey(strings, ints).aggregate(
new LastInitializer,
new LastAggregator, ints, StoreName)

streamA.leftJoin[Integer, Integer](table, new AddJoiner(), strings, ints)
.to(strings, ints, OutputATopic)
}

def topology1WindowOutput(builder: KStreamBuilder) = {
val streamA = builder.stream(strings, ints, InputCTopic)
streamA.groupByKey(strings, ints).count(
Expand Down

0 comments on commit e7aa8fc

Please sign in to comment.