Subversion Repositories Projects

Rev

Rev 1698 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1698 Rev 1794
Line 1... Line 1...
1
package dongfang.mkt.comm;
1
package dongfang.mkt.comm;
2
 
-
 
3
import java.io.IOException;
2
import java.io.IOException;
4
import java.io.InputStream;
3
import java.io.InputStream;
5
import java.io.OutputStream;
4
import java.io.OutputStream;
Line 6... Line 5...
6
 
5
 
Line 51... Line 50...
51
                r.setDaemon(false);
50
                r.setDaemon(false);
52
                r.start();
51
                r.start();
53
        }
52
        }
Line 54... Line 53...
54
 
53
 
55
        public void sendRequest(RequestFrame f) throws IOException {
54
        public void sendRequest(RequestFrame f) throws IOException {
56
                synchronized (this.output) {
55
                synchronized(this.output) {
57
                        output.write(f);
56
                        output.write(f);
58
                }
57
                }
Line 59... Line 58...
59
        }
58
        }