Skip to content
Advertisement

javadoc of SingleOutputStreamOperator#returns(TypeHint typeHint) method

I am reading the source code of SingleOutputStreamOperator#returns, its javadoc is:

JavaScript

It mentions FunctionWithNonInferrableReturnType to show case the necessity of returns method, but I am unable to write such a class that is NonInferrableReturnType. Could you please help write a simple one? Thanks!

Advertisement

Answer

When the docs says NonInferrableReturnType it means that we can use the type variable <T>, or any other letter that you prefer. So you can create a MapFunction that return a T. But then you have to use .returns(TypeInformation.of(String.class) for example, if your goal is to return a String.

JavaScript

Here I am using the classes of your last question Compiling fails when creating MapFunction with super type . The same code without .returns(TypeInformation.of(String.class)) compiles but throw the runtime exception:

could not be determined automatically, due to type erasure. You can give type information hints by using the returns(…) method on the result of the transformation call, or by letting your function implement the ‘ResultTypeQueryable’ interface.

JavaScript

In case you wish, here is the integration test for this example:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement