(Internal) Helper class to write to Process's stdin.
I am a helper which describes a selectable asynchronous writer to a
process's stdin.
Methods
|
|
__init__
connectionLost
doRead
fileno
write
writeSomeData
|
|
__init__
|
__init__ ( self, proc )
Initialize, specifying a Process instance to connect to.
|
|
connectionLost
|
connectionLost ( self )
See abstract.FileDescriptor.connectionLost.
|
|
doRead
|
doRead ( self )
This does nothing.
|
|
fileno
|
fileno ( self )
Return the fileno() of my process's stdin.
|
|
write
|
write ( self, data )
|
|
writeSomeData
|
writeSomeData ( self, data )
Write some data to the open process.
|
|