+str #16464 generalised zipWith for up to 22 params

- removing deprecarted marker from japi, people will have to use it
  currently
This commit is contained in:
Konrad 'ktoso' Malawski 2014-12-06 14:51:40 +01:00
parent 3b1bc67090
commit bc5f3aaa90
11 changed files with 407 additions and 138 deletions

View file

@ -278,7 +278,7 @@ public class FlowTest extends StreamTest {
final Source<String> in1 = Source.from(input1);
final Source<Integer> in2 = Source.from(input2);
final ZipWith<String, Integer, Pair<String, Integer>> zip = Zip.create();
final Zip2With<String, Integer, Pair<String, Integer>> zip = Zip.create();
final KeyedSink<Pair<String, Integer>, Future<BoxedUnit>> out = Sink
.foreach(new Procedure<Pair<String, Integer>>() {
@Override