Hi Robert. Good suggestion. Generally, it would be nice to have complete code examples available in the documentation. Even better, a way to only show excerpts of the complete example with the option of copying the complete working example.
For instance: public Example { public static void main(String[] args) { ExecutionEnvironment env = ... // BEGIN: example env.fromElements(1,2,3,4) env.map(element -> element * 2) // END: example env.print(); } } This still poses the problem that we need to run those examples in an automated way to ensure they are actually working. Cheers, Max On Wed, Nov 18, 2015 at 12:09 PM, Robert Metzger <rmetz...@apache.org> wrote: > Hi, > > I helped somebody yesterday on SO [1] who had issues with the Scala API > because he was importing the classes from the Java API. > Somebody else complained about this issue as well in the comments below the > documentation [2], and I think both users are right: Its an unnecessary > obstacle when learning Flink that users have to figure out which class to > import. > > How about adding import statements to the examples? > Is there a nicer way of solving the problem? > > > Regards, > Robert > > > > [1] http://stackoverflow.com/a/33721528/568695 > [2]: > https://ci.apache.org/projects/flink/flink-docs-release-0.10/apis/streaming_guide.html#comment-2365998014