You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bugfix version <code>2.0.1</code> fixed several important flaws in <codeclass="docutils literal"><spanclass="pre">kafka-streams-scala</span></code>.
3298
+
It's strongly recommended to use the latest bugfix release in general and to avoid <code>kafka-streams-scala 2.0.0</code> specifically.
3299
+
</li>
3300
+
<li>
3301
+
<p>
3302
+
There is an upstream dependency that causes trouble in SBT builds. This problem is fixed in <code>2.0.2</code>, <code>2.1.1</code>, and <code>2.2.0</code>.
3303
+
Please consider using one of those versions or higher.
3304
+
</p>
3305
+
<p>
3306
+
If you must use an earlier version, you may add an explicit dependency on the problematic library as a workaround:
<spanid="streams-developer-guide-dsl-sample-usage"></span><h3><aclass="toc-backref"href="#id28">Sample Usage</a><aclass="headerlink"href="#scala-dsl-sample-usage"title="Permalink to this headline"></a></h3>
3295
3321
<p>The library works by wrapping the original Java abstractions of Kafka Streams within a Scala wrapper object and then using implicit conversions between them. All the Scala abstractions are named identically as the corresponding Java abstraction, but they reside in a different package of the library e.g. the Scala class <codeclass="docutils literal"><spanclass="pre">org.apache.kafka.streams.scala.StreamsBuilder</span></code> is a wrapper around <codeclass="docutils literal"><spanclass="pre">org.apache.kafka.streams.StreamsBuilder</span></code>, <codeclass="docutils literal"><spanclass="pre">org.apache.kafka.streams.scala.kstream.KStream</span></code> is a wrapper around <codeclass="docutils literal"><spanclass="pre">org.apache.kafka.streams.kstream.KStream</span></code>, and so on.</p>
0 commit comments