1 /** @file init.h Declaration of initializing link graph handler. */
6 #include "linkgraphjob_base.h"
9 * Stateless, thread safe initialization hander. Initializes node and edge
12 class InitHandler
: public ComponentHandler
{
16 * Initialize the link graph job.
17 * @param job Job to be initialized.
19 virtual void Run(LinkGraphJob
&job
) const { job
.Init(); }
22 * Virtual destructor has to be defined because of virtual Run().
24 virtual ~InitHandler() {}