%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#ifndef SRC_TIMER_WRAP_INL_H_ #define SRC_TIMER_WRAP_INL_H_ #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #include "timer_wrap.h" #include <utility> #include "env.h" #include "uv.h" namespace node { template <typename... Args> inline TimerWrap::TimerWrap(Environment* env, Args&&... args) : env_(env), fn_(std::forward<Args>(args)...) { uv_timer_init(env->event_loop(), &timer_); timer_.data = this; } template <typename... Args> inline TimerWrapHandle::TimerWrapHandle(Environment* env, Args&&... args) { timer_ = new TimerWrap(env, std::forward<Args>(args)...); env->AddCleanupHook(CleanupHook, this); } } // namespace node #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #endif // SRC_TIMER_WRAP_INL_H_