| Method Summary |
| |
__init__(self)
|
| |
connectSSL(self,
host,
port,
factory,
contextFactory,
timeout,
bindAddress)
|
| |
connectTCP(self,
host,
port,
factory,
timeout,
bindAddress)
|
| |
connectUDP(self,
remotehost,
remoteport,
protocol,
localport,
interface,
maxPacketSize)
Connects a ConnectedDatagramProtocol instance to a UDP port. |
| |
connectUNIX(self,
address,
factory,
timeout,
checkPID)
|
| |
connectUNIXDatagram(self,
remotehost,
remoteport,
protocol,
localport,
interface,
maxPacketSize)
Connects a ConnectedDatagramProtocol instance to a UDP port. |
| |
connectWith(self,
connectorType,
*args,
**kw)
|
| |
installWaker(self)
Install a `waker' to allow threads and signals to wake up the IO
thread. |
| |
listenMulticast(self,
port,
protocol,
interface,
maxPacketSize,
listenMultiple)
Connects a given DatagramProtocol to the given numeric UDP port. |
| |
listenSSL(self,
port,
factory,
contextFactory,
backlog,
interface)
|
| |
listenTCP(self,
port,
factory,
backlog,
interface)
|
| |
listenUDP(self,
port,
protocol,
interface,
maxPacketSize)
Connects a given DatagramProtocol to the given numeric UDP port. |
| |
listenUNIX(self,
address,
factory,
backlog,
mode,
wantPID)
|
| |
listenUNIXDatagram(self,
port,
protocol,
interface,
maxPacketSize)
Connects a given DatagramProtocol to the given numeric UDP port. |
| |
listenWith(self,
portType,
*args,
**kw)
|
| |
mainLoop(self)
|
| |
run(self,
installSignalHandlers)
|
| |
spawnProcess(self,
processProtocol,
executable,
args,
env,
path,
uid,
gid,
usePTY,
childFDs)
|
| |
startRunning(self,
installSignalHandlers)
|
| Inherited from object |
| |
__delattr__(...)
x.__delattr__('name') <==> del x.name |
| |
__getattribute__(...)
x.__getattribute__('name') <==> x.name |
| |
__hash__(x)
x.__hash__() <==> hash(x) |
| |
__new__(T,
S,
...)
T.__new__(S, ...) -> a new object with type S, a subtype of T |
| |
__reduce__(...)
helper for pickle |
| |
__reduce_ex__(...)
helper for pickle |
| |
__repr__(x)
x.__repr__() <==> repr(x) |
| |
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value |
| |
__str__(x)
x.__str__() <==> str(x) |