-
-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathasyncworker.cpp
More file actions
43 lines (35 loc) · 1.05 KB
/
asyncworker.cpp
File metadata and controls
43 lines (35 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2015 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
********************************************************************/
#ifndef _WIN32
#include <unistd.h>
#define Sleep(x) usleep((x)*1000)
#endif
#include <nan.h>
using namespace Nan; // NOLINT(build/namespaces)
class SleepWorker : public AsyncWorker {
public:
SleepWorker(Callback *callback, int milliseconds)
: AsyncWorker(callback), milliseconds(milliseconds) {}
~SleepWorker() {}
void Execute () {
Sleep(milliseconds);
}
private:
int milliseconds;
};
NAN_METHOD(DoSleep) {
Callback *callback = new Callback(info[1].As<v8::Function>());
AsyncQueueWorker(
new SleepWorker(callback, To<uint32_t>(info[0]).FromJust()));
}
void Init(v8::Local<v8::Object> target) {
Set(target
, New<v8::String>("a").ToLocalChecked()
, New<v8::FunctionTemplate>(DoSleep)->GetFunction());
}
NAN_MODULE(asyncworker, Init)