(Session session, Channel channel)
| 34 | private Session session=null; |
| 35 | private Channel channel=null; |
| 36 | void request(Session session, Channel channel) throws Exception{ |
| 37 | this.session=session; |
| 38 | this.channel=channel; |
| 39 | if(channel.connectTimeout>0){ |
| 40 | setReply(true); |
| 41 | } |
| 42 | } |
| 43 | boolean waitForReply(){ return reply; } |
| 44 | void setReply(boolean reply){ this.reply=reply; } |
| 45 | void write(Packet packet) throws Exception{ |
no test coverage detected