CPARK 1.0
A light-weighted, distributed computing framework for C++ that offers a fast and general-purpose large data processing solution.
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | List of all members
cpark::UnionRdd< R1, R2 > Class Template Reference

#include <union_rdd.h>

Inheritance diagram for cpark::UnionRdd< R1, R2 >:
cpark::BaseRdd< UnionRdd< R1, R2 > >

Public Types

using Base = BaseRdd< UnionRdd< R1, R2 > >
 

Public Member Functions

constexpr UnionRdd (const R1 &prev1, const R2 &prev2)
 
constexpr UnionRdd (const UnionRdd &)=default
 
UnionRddoperator= (const UnionRdd &)=default
 
- Public Member Functions inherited from cpark::BaseRdd< UnionRdd< R1, R2 > >
 BaseRdd (const BaseRdd< R > &prev, bool copy_id)
 
 BaseRdd (const BaseRdd< R > &prev)
 
 BaseRdd (ExecutionContext *context)
 
BaseRddoperator= (const BaseRdd< R > &prev)
 
auto begin () const
 
auto end () const
 
ExecutionContext::RddId id () const noexcept
 

Public Attributes

friend Base
 

Additional Inherited Members

- Protected Attributes inherited from cpark::BaseRdd< UnionRdd< R1, R2 > >
ExecutionContextcontext_
 
ExecutionContext::RddId rdd_id_
 
size_t splits_num_
 

Detailed Description

template<concepts::Rdd R1, concepts::Rdd R2>
requires std::is_same_v<utils::RddElementType<R1>, utils::RddElementType<R2>>
class cpark::UnionRdd< R1, R2 >

An Rdd holding the data union from an old rdd. This Rdd will hold splits of the sum of its predecessors.

Template Parameters
R1Type of the old Rdd.
R2Type of another old Rdd. The elements in the two types of Rdd should be convertible.
Examples
merge_splits.cpp.

Constructor & Destructor Documentation

◆ UnionRdd()

template<concepts::Rdd R1, concepts::Rdd R2>
constexpr cpark::UnionRdd< R1, R2 >::UnionRdd ( const R1 prev1,
const R2 prev2 
)
inlineconstexpr

Main constructor of UnionRdd.

Parameters
prev1Reference to previous Rdd of type R1
prev2Reference to previous Rdd of type R2

The documentation for this class was generated from the following file: