FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node-java/src-cpp/methodCallBaton.h at master · specs-feup/node-java · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
specs-feup
/
node-java
Public
forked from
joeferner/node-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node-java
/
src-cpp
/
methodCallBaton.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
74 lines (56 loc) · 1.68 KB
Breadcrumbs
node-java
/
src-cpp
/
methodCallBaton.h
Copy path
File metadata and controls
74 lines (56 loc) · 1.68 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#
ifndef
_methodcallbaton_h_
#
define
_methodcallbaton_h_
#
include
"
utils.h
"
#
include
<
jni.h
>
#
include
<
list
>
#
include
<
node.h
>
#
include
<
node_version.h
>
#
include
<
v8.h
>
class
Java
;
class
JavaObject
;
class
MethodCallBaton
:
public
Nan
::AsyncWorker {
public:
MethodCallBaton
(Java *java, jobject method, jarray args, v8::Local<v8::Value> &callback);
virtual
~MethodCallBaton
();
void
run
();
v8::Local<v8::Value>
runSync
();
protected:
v8::Local<v8::Value>
resultsToV8
(JNIEnv *env);
virtual
void
Execute
();
virtual
void
WorkComplete
();
virtual
void
ExecuteInternal
(JNIEnv *env) = 0;
static
jmethodID
getMethodInvokeMethodId
(JNIEnv *env);
Java *m_java;
jthrowable m_error;
std::string m_errorString;
jarray m_args;
jobject m_result;
jobject m_method;
private:
static
jmethodID m_methodInvokeMethodId;
};
class
InstanceMethodCallBaton
:
public
MethodCallBaton
{
public:
InstanceMethodCallBaton
(Java *java, JavaObject *obj, jobject method, jarray args, v8::Local<v8::Value> &callback);
virtual
~InstanceMethodCallBaton
();
protected:
virtual
void
ExecuteInternal
(JNIEnv *env);
JavaObject *m_javaObject;
};
class
NewInstanceBaton
:
public
MethodCallBaton
{
public:
NewInstanceBaton
(Java *java, jclass clazz, jobject method, jarray args, v8::Local<v8::Value> &callback);
virtual
~NewInstanceBaton
();
protected:
virtual
void
ExecuteInternal
(JNIEnv *env);
jclass m_clazz;
};
class
StaticMethodCallBaton
:
public
MethodCallBaton
{
public:
StaticMethodCallBaton
(Java *java, jclass clazz, jobject method, jarray args, v8::Local<v8::Value> &callback);
virtual
~StaticMethodCallBaton
();
protected:
virtual
void
ExecuteInternal
(JNIEnv *env);
jclass m_clazz;
};
#
endif
Back
|
FazBrowse Home
|
New Git URL