Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1696 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
5 | import dongfang.mkt.RequestFrameVisitor; |
||
6 | |||
7 | |||
8 | public class ProfilerRequestFrame extends RequestFrame { |
||
9 | private int autoSendInterval; |
||
10 | |||
11 | public ProfilerRequestFrame(int address) { |
||
12 | super(address); |
||
13 | } |
||
14 | |||
15 | public int getAutoSendInterval() { |
||
16 | return autoSendInterval; |
||
17 | } |
||
18 | |||
19 | public void setAutoSendInterval(int autoSendInterval) { |
||
20 | this.autoSendInterval = autoSendInterval; |
||
21 | } |
||
22 | |||
23 | public void accept(RequestFrameVisitor o) throws IOException { |
||
24 | o.visit(this); |
||
25 | } |
||
26 | } |