twisted.internet.tcp._FileDescriptorReservation(object) class documentationtwisted.internet.tcp
(View In Hierarchy)
Implements interfaces: twisted.internet.tcp._IFileDescriptorReservation
_IFileDescriptorReservation
implementation.
| Instance Variable | fileFactory | A factory that will be called to reserve a file descriptor. (type: A callablethat accepts no arguments and returns an object with aclosemethod.) | 
| Method | available | See _IFileDescriptorReservation.available. | 
| Method | reserve | See _IFileDescriptorReservation.reserve. | 
| Method | __enter__ | See _IFileDescriptorReservation.__enter__. | 
| Method | __exit__ | See _IFileDescriptorReservation.__exit__. | 
callable
that accepts no arguments and returns an object with a close 
method.)
  See _IFileDescriptorReservation.available.
| Returns | Trueif the reserved file descriptor is open and can thus be closed to allow a 
new file to be opened in its place;Falseif it is not open. | |