mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
650 B
31 lines
650 B
10 years ago
|
#ifndef SRC_REQ_WRAP_H_
|
||
|
#define SRC_REQ_WRAP_H_
|
||
|
|
||
|
#include "async-wrap.h"
|
||
|
#include "env.h"
|
||
|
#include "util.h"
|
||
|
#include "v8.h"
|
||
|
|
||
|
namespace node {
|
||
|
|
||
|
template <typename T>
|
||
|
class ReqWrap : public AsyncWrap {
|
||
|
public:
|
||
|
inline ReqWrap(Environment* env,
|
||
|
v8::Handle<v8::Object> object,
|
||
|
AsyncWrap::ProviderType provider);
|
||
|
inline ~ReqWrap() override;
|
||
|
inline void Dispatched(); // Call this after the req has been dispatched.
|
||
|
|
||
|
private:
|
||
|
friend class Environment;
|
||
|
ListNode<ReqWrap> req_wrap_queue_;
|
||
|
|
||
|
public:
|
||
|
T req_; // Must be last. TODO(bnoordhuis) Make private.
|
||
|
};
|
||
|
|
||
|
} // namespace node
|
||
|
|
||
|
#endif // SRC_REQ_WRAP_H_
|