mirror of https://github.com/Icinga/icinga2.git
13 lines
300 B
C++
13 lines
300 B
C++
|
#include "i2-base.h"
|
||
|
|
||
|
using namespace icinga;
|
||
|
|
||
|
ScriptTask::ScriptTask(const ScriptFunction::Ptr& function, const vector<Value>& arguments)
|
||
|
: AsyncTask<ScriptTask, Value>(), m_Function(function), m_Arguments(arguments)
|
||
|
{ }
|
||
|
|
||
|
void ScriptTask::Run(void)
|
||
|
{
|
||
|
m_Function->Invoke(GetSelf(), m_Arguments);
|
||
|
}
|