twisted.protocols.ftp.IWriteFile(Interface) interface documentationtwisted.protocols.ftp
(View In Hierarchy)
Known implementations: twisted.protocols.ftp._FileWriter, twisted.test.test_ftp.CloseTestWriter
A file into which bytes may be written.
| Method | receive | Create a consumer which will write to this file. This method may only be invoked once on each provider. | 
| Method | close | Perform any post-write work that needs to be done. This method may only be invoked once on each provider, and will always be invoked after receive(). | 
Create a consumer which will write to this file. This method may only be invoked once on each provider.
| Returns | (type: DeferredofIConsumer) | |
Perform any post-write work that needs to be done. This method may only be invoked once on each provider, and will always be invoked after receive().
| Returns | (type: Deferredof anything: the value is ignored. The FTP client 
will not see their upload request complete until this Deferred has been 
fired.) | |