~ubuntu-branches/ubuntu/karmic/eric/karmic

« back to all changes in this revision

Viewing changes to eric/Documentation/Source/eric4.DebugClients.Python.AsyncIO.html

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2008-01-28 18:02:25 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080128180225-6nrox6yrworh2c4v
Tags: 4.0.4-1ubuntu1
* Add python-qt3 to build-depends becuase that's where Ubuntu puts 
  pyqtconfig
* Change maintainer to MOTU

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>eric4.DebugClients.Python.AsyncIO</title>
 
6
<style>
 
7
body {
 
8
    background:white;
 
9
    margin: 0em 1em 10em 1em;
 
10
    color: black;
 
11
}
 
12
 
 
13
h1 { color: white; background: #4FA4FF; }
 
14
h2 { color: white; background: #4FA4FF; }
 
15
h3 { color: white; background: #00557F; }
 
16
h4 { color: white; background: #00557F; }
 
17
    
 
18
a { color: #AA5500; }
 
19
 
 
20
</style>
 
21
</head>
 
22
<body><a NAME="top" ID="top"></a>
 
23
<h1>eric4.DebugClients.Python.AsyncIO</h1>
 
24
<p>
 
25
Module implementing a base class of an asynchronous interface for the debugger.
 
26
</p>
 
27
<h3>Classes</h3>
 
28
<table>
 
29
<tr>
 
30
<td><a href="#AsyncIO">AsyncIO</a></td>
 
31
<td>Class implementing asynchronous reading and writing.</td>
 
32
</tr>
 
33
</table>
 
34
<h3>Functions</h3>
 
35
<table>
 
36
<tr><td>None</td></tr>
 
37
</table>
 
38
<hr /><hr />
 
39
<a NAME="AsyncIO" ID="AsyncIO"></a>
 
40
<h2>AsyncIO</h2>
 
41
<p>
 
42
    Class implementing asynchronous reading and writing.
 
43
</p>
 
44
<h3>Derived from</h3>
 
45
object
 
46
<h3>Methods</h3>
 
47
<table>
 
48
<tr>
 
49
<td><a href="#AsyncIO.__init__">AsyncIO</a></td>
 
50
<td>Constructor</td>
 
51
</tr><tr>
 
52
<td><a href="#AsyncIO.disconnect">disconnect</a></td>
 
53
<td>Public method to disconnect any current connection.</td>
 
54
</tr><tr>
 
55
<td><a href="#AsyncIO.readReady">readReady</a></td>
 
56
<td>Public method called when there is data ready to be read.</td>
 
57
</tr><tr>
 
58
<td><a href="#AsyncIO.setDescriptors">setDescriptors</a></td>
 
59
<td>Public method called to set the descriptors for the connection.</td>
 
60
</tr><tr>
 
61
<td><a href="#AsyncIO.write">write</a></td>
 
62
<td>Public method to write a string.</td>
 
63
</tr><tr>
 
64
<td><a href="#AsyncIO.writeReady">writeReady</a></td>
 
65
<td>Public method called when we are ready to write data.</td>
 
66
</tr>
 
67
</table>
 
68
<p><a NAME="AsyncIO.__init__" ID="AsyncIO.__init__"></a>
 
69
<h4>AsyncIO (Constructor)</h4>
 
70
<b>AsyncIO</b>(<i></i>)
 
71
<p>
 
72
        Constructor
 
73
</p><dl>
 
74
<dt><i>parent</i></dt>
 
75
<dd>
 
76
the optional parent of this object (QObject) (ignored)
 
77
</dd>
 
78
</dl><a NAME="AsyncIO.disconnect" ID="AsyncIO.disconnect"></a>
 
79
<h4>AsyncIO.disconnect</h4>
 
80
<b>disconnect</b>(<i></i>)
 
81
<p>
 
82
        Public method to disconnect any current connection.
 
83
</p><a NAME="AsyncIO.readReady" ID="AsyncIO.readReady"></a>
 
84
<h4>AsyncIO.readReady</h4>
 
85
<b>readReady</b>(<i>fd</i>)
 
86
<p>
 
87
        Public method called when there is data ready to be read.
 
88
</p><dl>
 
89
<dt><i>fd</i></dt>
 
90
<dd>
 
91
file descriptor of the file that has data to be read (int)
 
92
</dd>
 
93
</dl><a NAME="AsyncIO.setDescriptors" ID="AsyncIO.setDescriptors"></a>
 
94
<h4>AsyncIO.setDescriptors</h4>
 
95
<b>setDescriptors</b>(<i>rfd, wfd</i>)
 
96
<p>
 
97
        Public method called to set the descriptors for the connection.
 
98
</p><dl>
 
99
<dt><i>rfd</i></dt>
 
100
<dd>
 
101
file descriptor of the input file (int)
 
102
</dd><dt><i>wfd</i></dt>
 
103
<dd>
 
104
file descriptor of the output file (int)
 
105
</dd>
 
106
</dl><a NAME="AsyncIO.write" ID="AsyncIO.write"></a>
 
107
<h4>AsyncIO.write</h4>
 
108
<b>write</b>(<i>s</i>)
 
109
<p>
 
110
        Public method to write a string.
 
111
</p><dl>
 
112
<dt><i>s</i></dt>
 
113
<dd>
 
114
the data to be written (string)
 
115
</dd>
 
116
</dl><a NAME="AsyncIO.writeReady" ID="AsyncIO.writeReady"></a>
 
117
<h4>AsyncIO.writeReady</h4>
 
118
<b>writeReady</b>(<i>fd</i>)
 
119
<p>
 
120
        Public method called when we are ready to write data.
 
121
</p><dl>
 
122
<dt><i>fd</i></dt>
 
123
<dd>
 
124
file descriptor of the file that has data to be written (int)
 
125
</dd>
 
126
</dl></p>
 
127
<div align="right"><a href="#top">Up</a></div>
 
128
<hr />
 
129
</body></html>
 
 
b'\\ No newline at end of file'