Skip to content

Commit

Permalink
[scala] Simplify Operation Classes: No more Impl Classes
Browse files Browse the repository at this point in the history
  • Loading branch information
aljoscha committed Oct 1, 2014
1 parent 15e5990 commit 8573bf4
Show file tree
Hide file tree
Showing 11 changed files with 493 additions and 501 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ protected Keys<I2> getKeys2() {
return this.keys2;
}

protected JoinHint getJoinHint() {
public JoinHint getJoinHint() {
return this.joinHint;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ import org.apache.flink.api.scala.operators.ScalaAggregateOperator

import scala.reflect.ClassTag

/**
* The result of [[DataSet.aggregate]]. This can be used to chain more aggregations to the
* one aggregate operator.
*
* @tparam T The type of the DataSet, i.e., the type of the elements of the DataSet.
*/
class AggregateDataSet[T: ClassTag](set: ScalaAggregateOperator[T])
extends DataSet[T](set) {

Expand Down
Loading

0 comments on commit 8573bf4

Please sign in to comment.