I\'m having troubles using Apache Flink Scala API
For example, even when I take the examples from the official documentation, the scala compiler gives me tons of com
You need to add the following import to your code:
import org.apache.flink.api.scala._
Then the example works.