![]() |
CPARK 1.0
A light-weighted, distributed computing framework for C++ that offers a fast and general-purpose large data processing solution.
|
#include <union_rdd.h>
Public Types | |
using | Base = BaseRdd< UnionRdd< R1, R2 > > |
Public Member Functions | |
constexpr | UnionRdd (const R1 &prev1, const R2 &prev2) |
constexpr | UnionRdd (const UnionRdd &)=default |
UnionRdd & | operator= (const UnionRdd &)=default |
![]() | |
BaseRdd (const BaseRdd< R > &prev, bool copy_id) | |
BaseRdd (const BaseRdd< R > &prev) | |
BaseRdd (ExecutionContext *context) | |
BaseRdd & | operator= (const BaseRdd< R > &prev) |
auto | begin () const |
auto | end () const |
ExecutionContext::RddId | id () const noexcept |
Public Attributes | |
friend | Base |
Additional Inherited Members | |
![]() | |
ExecutionContext * | context_ |
ExecutionContext::RddId | rdd_id_ |
size_t | splits_num_ |
An Rdd holding the data union from an old rdd. This Rdd will hold splits of the sum of its predecessors.
R1 | Type of the old Rdd. |
R2 | Type of another old Rdd. The elements in the two types of Rdd should be convertible. |
|
inlineconstexpr |
Main constructor of UnionRdd.
prev1 | Reference to previous Rdd of type R1 |
prev2 | Reference to previous Rdd of type R2 |