|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' |
|
3 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> |
|
4 <html><head> |
|
5 <title>eric5.DebugClients.Ruby.AsyncIO</title> |
|
6 <style> |
|
7 b'body {\n background:white;\n margin: 0em 1em 10em 1em;\n color: black;\n}\n\nh1 { color: white; background: #4FA4FF; }\nh2 { color: white; background: #4FA4FF; }\nh3 { color: white; background: #00557F; }\nh4 { color: white; background: #00557F; }\n \na { color: #AA5500; }\n' |
|
8 </style> |
|
9 </head> |
|
10 <body><a NAME="top" ID="top"></a> |
|
11 <h1>eric5.DebugClients.Ruby.AsyncIO</h1> |
|
12 <p> |
|
13 File implementing an asynchronous interface for the debugger. |
|
14 </p> |
|
15 <h3>Global Attributes</h3> |
|
16 <table> |
|
17 <tr><td>None</td></tr> |
|
18 </table> |
|
19 <h3>Classes</h3> |
|
20 <table> |
|
21 <tr><td>None</td></tr> |
|
22 </table> |
|
23 <h3>Modules</h3> |
|
24 <table> |
|
25 <tr> |
|
26 <td><a href="#AsyncIO">AsyncIO</a></td> |
|
27 <td>Module implementing asynchronous reading and writing.</td> |
|
28 </tr> |
|
29 </table> |
|
30 <h3>Functions</h3> |
|
31 <table> |
|
32 <tr><td>None</td></tr> |
|
33 </table> |
|
34 <hr /><hr /> |
|
35 <a NAME="AsyncIO" ID="AsyncIO"></a> |
|
36 <h2>AsyncIO</h2> |
|
37 <p> |
|
38 Module implementing asynchronous reading and writing. |
|
39 </p> |
|
40 <h3>Module Attributes</h3> |
|
41 <table> |
|
42 <tr><td>None</td></tr> |
|
43 </table> |
|
44 <h3>Classes</h3> |
|
45 <table> |
|
46 <tr><td>None</td></tr> |
|
47 </table> |
|
48 <h3>Functions</h3> |
|
49 <table> |
|
50 <tr> |
|
51 <td><a href="#AsyncIO.disconnect">disconnect</a></td> |
|
52 <td>Function to disconnect any current connection.</td> |
|
53 </tr><tr> |
|
54 <td><a href="#AsyncIO.initializeAsyncIO">initializeAsyncIO</a></td> |
|
55 <td>Function to initialize the module.</td> |
|
56 </tr><tr> |
|
57 <td><a href="#AsyncIO.readReady">readReady</a></td> |
|
58 <td>Function called when there is data ready to be read.</td> |
|
59 </tr><tr> |
|
60 <td><a href="#AsyncIO.setDescriptors">setDescriptors</a></td> |
|
61 <td>Function called to set the descriptors for the connection.</td> |
|
62 </tr><tr> |
|
63 <td><a href="#AsyncIO.write">write</a></td> |
|
64 <td>Function to write a string.</td> |
|
65 </tr><tr> |
|
66 <td><a href="#AsyncIO.writeReady">writeReady</a></td> |
|
67 <td>Function called when we are ready to write data.</td> |
|
68 </tr> |
|
69 </table> |
|
70 <hr /> |
|
71 |
|
72 <a NAME="AsyncIO.disconnect" ID="AsyncIO.disconnect"></a> |
|
73 <h4>AsyncIO.disconnect</h4> |
|
74 <b>disconnect</b>(<i></i>) |
|
75 <p> |
|
76 Function to disconnect any current connection. |
|
77 </p><a NAME="AsyncIO.initializeAsyncIO" ID="AsyncIO.initializeAsyncIO"></a> |
|
78 <h4>AsyncIO.initializeAsyncIO</h4> |
|
79 <b>initializeAsyncIO</b>(<i></i>) |
|
80 <p> |
|
81 Function to initialize the module. |
|
82 </p><a NAME="AsyncIO.readReady" ID="AsyncIO.readReady"></a> |
|
83 <h4>AsyncIO.readReady</h4> |
|
84 <b>readReady</b>(<i></i>) |
|
85 <p> |
|
86 Function called when there is data ready to be read. |
|
87 </p><dl> |
|
88 <dt><i>fd</i></dt> |
|
89 <dd> |
|
90 file descriptor of the file that has data to be read (int) |
|
91 </dd> |
|
92 </dl><a NAME="AsyncIO.setDescriptors" ID="AsyncIO.setDescriptors"></a> |
|
93 <h4>AsyncIO.setDescriptors</h4> |
|
94 <b>setDescriptors</b>(<i>wfd</i>) |
|
95 <p> |
|
96 Function called to set the descriptors for the connection. |
|
97 </p><dl> |
|
98 <dt><i>fd</i></dt> |
|
99 <dd> |
|
100 file descriptor of the input file (int) |
|
101 </dd><dt><i>wfd</i></dt> |
|
102 <dd> |
|
103 file descriptor of the output file (int) |
|
104 </dd> |
|
105 </dl><a NAME="AsyncIO.write" ID="AsyncIO.write"></a> |
|
106 <h4>AsyncIO.write</h4> |
|
107 <b>write</b>(<i></i>) |
|
108 <p> |
|
109 Function to write a string. |
|
110 </p><dl> |
|
111 <dt><i>s</i></dt> |
|
112 <dd> |
|
113 the data to be written (string) |
|
114 </dd> |
|
115 </dl><a NAME="AsyncIO.writeReady" ID="AsyncIO.writeReady"></a> |
|
116 <h4>AsyncIO.writeReady</h4> |
|
117 <b>writeReady</b>(<i></i>) |
|
118 <p> |
|
119 Function called when we are ready to write data. |
|
120 </p><dl> |
|
121 <dt><i>fd</i></dt> |
|
122 <dd> |
|
123 file descriptor of the file that has data to be written (int) |
|
124 </dd> |
|
125 </dl> |
|
126 <div align="right"><a href="#top">Up</a></div> |
|
127 <hr /> |
|
128 </body></html> |