-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Kafka Streams support #35
base: master
Are you sure you want to change the base?
Conversation
…ature/kafkaStreams
@@ -0,0 +1,11 @@ | |||
<configuration> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should better be named logback-test.xml
val flow = for { | ||
_ <- Task.now(println("App Started")) | ||
_ <- streams.start | ||
_ <- Task.sleep(5.seconds) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't there a better way to wait the message to be processed ?
Such kind of sleeps look like Selenium tests 10 years ago.
Addresses #32
This is a work in progress, the current status of the work includes:
-Kafka streams configuration definition.
-Wrappers for KStreams API support (stateless streams).
-Task execution of the
KafkaStreams
object.