-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRocketMQConsumerEntryMethodDescriptor.java
72 lines (57 loc) · 1.37 KB
/
RocketMQConsumerEntryMethodDescriptor.java
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
package com.navercorp.pinpoint.plugin.rocketmq.client.interceptor;
import com.navercorp.pinpoint.bootstrap.context.MethodDescriptor;
import com.navercorp.pinpoint.common.trace.MethodType;
/**
* @author HyunGil Jeong
*/
public class RocketMQConsumerEntryMethodDescriptor implements MethodDescriptor {
private int apiId = 0;
private int type = MethodType.WEB_REQUEST;
@Override
public String getMethodName() {
return "";
}
@Override
public String getClassName() {
return "";
}
@Override
public String[] getParameterTypes() {
return null;
}
@Override
public String[] getParameterVariableName() {
return null;
}
@Override
public String getParameterDescriptor() {
return "()";
}
@Override
public int getLineNumber() {
return -1;
}
@Override
public String getFullName() {
return RocketMQConsumerEntryMethodDescriptor.class.getName();
}
@Override
public void setApiId(int apiId) {
this.apiId = apiId;
}
@Override
public int getApiId() {
return this.apiId;
}
@Override
public String getApiDescriptor() {
return "ActiveMQ Consumer Invocation";
}
@Override
public int getType() {
return this.type;
}
public void setType(int type) {
this.type = type;
}
}