Skip to content

Commit

Permalink
Add skeleton for Kafka sink
Browse files Browse the repository at this point in the history
  • Loading branch information
cstroe committed Feb 28, 2019
1 parent 8b821b8 commit a3de1d5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions checklister-eventsink-kafka/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ dependencies {
// Kotlin
implementation(kotlin("stdlib-jdk8"))
implementation(project(":checklister-dto"))
implementation(project(":checklister-event"))
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package cloud.cosmin.checklister.lib.eventsink.kafka

import cloud.cosmin.checklister.lib.event.Event
import cloud.cosmin.checklister.lib.event.sink.EventSink

class KafkaEventSink : EventSink {
override fun accept(event: Event) {
TODO("not implemented")
}
}

0 comments on commit a3de1d5

Please sign in to comment.