OoOJoin  0.0.1
The next generation of out-of-order join operator
AbstractOperator.h File Reference
#include <Common/Window.h>
#include <Common/Tuples.h>
#include <Utils/UtilityFunctions.hpp>
#include <assert.h>
#include <Utils/ConfigMap.hpp>
#include <WaterMarker/WMTable.h>
Include dependency graph for AbstractOperator.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  OoOJoin::AbstractOperator
 The abstraction to describe a join operator, providing virtual function of using the operation. More...
 

Namespaces

 OoOJoin
 

Macros

#define OP_INFO   printf
 
#define OP_ERROR   printf
 
#define OP_WARNNING   INTELLI_WARNING
 
#define newAbstractOperator   std::make_shared<OoOJoin::AbstractOperator>
 (Macro) To creat a new AbstractOperator under shared pointer.
 
#define timeTrackingStart(v)   ; tsType v;v=UtilityFunctions::timeLastUs(timeBaseStruct);
 (Macro) start a time tracking and record it at variable v, v is not defined yet More...
 
#define timeTrackingStartNoClaim(v)   ; v=UtilityFunctions::timeLastUs(timeBaseStruct);
 (Macro) start a time tracking and record it at variable v, v is previously defined More...
 
#define timeTrackingEnd(v)   (UtilityFunctions::timeLastUs(timeBaseStruct)-v)
 (Macro) end a time tracking of variable v and return More...
 

Typedefs

typedef std::shared_ptr< class AbstractOperator > OoOJoin::AbstractOperatorPtr
 The class to describe a shared pointer to AbstractOperator.