File tree 1 file changed +0
-11
lines changed
1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ class TimerWrap : public HandleWrap {
43
43
44
44
env->SetProtoMethod (constructor, " start" , Start);
45
45
env->SetProtoMethod (constructor, " stop" , Stop);
46
- env->SetProtoMethod (constructor, " setRepeat" , SetRepeat);
47
46
env->SetProtoMethod (constructor, " getRepeat" , GetRepeat);
48
47
env->SetProtoMethod (constructor, " again" , Again);
49
48
@@ -101,16 +100,6 @@ class TimerWrap : public HandleWrap {
101
100
args.GetReturnValue ().Set (err);
102
101
}
103
102
104
- static void SetRepeat (const FunctionCallbackInfo<Value>& args) {
105
- TimerWrap* wrap = Unwrap<TimerWrap>(args.Holder ());
106
-
107
- CHECK (HandleWrap::IsAlive (wrap));
108
-
109
- int64_t repeat = args[0 ]->IntegerValue ();
110
- uv_timer_set_repeat (&wrap->handle_ , repeat);
111
- args.GetReturnValue ().Set (0 );
112
- }
113
-
114
103
static void GetRepeat (const FunctionCallbackInfo<Value>& args) {
115
104
TimerWrap* wrap = Unwrap<TimerWrap>(args.Holder ());
116
105
You can’t perform that action at this time.
0 commit comments