Flink Scala API “not enough arguments”

前端 未结 1 1066
孤街浪徒
孤街浪徒 2020-12-20 13:53

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

相关标签:
1条回答
  • 2020-12-20 14:35

    You need to add the following import to your code:

    import org.apache.flink.api.scala._ 
    

    Then the example works.

    0 讨论(0)
提交回复
热议问题