class QueryFactory(protocol.ClientFactory): (source)
XML-RPC Client Factory
| Instance Variable | path |
The path portion of the URL to which to post method calls. |
| Instance Variable | host |
The value to use for the Host HTTP header. |
| Instance Variable | user |
The username with which to authenticate with the server when making calls. |
| Instance Variable | password |
The password with which to authenticate with the server when making calls. |
| Instance Variable | useDateTime |
Accept datetime values as datetime.datetime objects. also passed to the underlying xmlrpclib implementation. Defaults to False. |
| Instance Variable | deferred |
Undocumented |
| Method | __init__ |
|
| Instance Variable | payload |
Undocumented |
| Method | parseResponse |
Undocumented |
| Method | clientConnectionLost |
Called when an established connection is lost. |
| Method | badStatus |
Undocumented |
Inherited from ClientFactory:
| Method | startedConnecting |
Called when a connection has been started. |
| Method | clientConnectionFailed |
Called when a connection has failed to connect. |
Inherited from Factory (via ClientFactory):
| Class Variable | protocol |
Undocumented |
| Instance Variable | numPorts |
Undocumented |
| Class Variable | noisy |
Undocumented |
| Class Method | forProtocol |
Create a factory for the given protocol. |
| Method | logPrefix |
Describe this factory for log messages. |
| Method | doStart |
Make sure startFactory is called. |
| Method | doStop |
Make sure stopFactory is called. |
| Method | startFactory |
This will be called before I begin listening on a Port or Connector. |
| Method | stopFactory |
This will be called before I stop listening on all Ports/Connectors. |
| Method | buildProtocol |
Create an instance of a subclass of Protocol. |
False.bool)
| Parameters | path | Undocumented |
| host | Undocumented | |
| method | The name of the method to call. (type: str) | |
| user | Undocumented | |
| password | Undocumented | |
| allowNone | allow the use of None values in parameters. It's passed to the underlying xmlrpclib implementation. Defaults to False. (type: bool or None) | |
| args | the arguments to pass to the method. (type: tuple) | |
| canceller | A 1-argument callable passed to the deferred as the canceller callback. (type: callable or None) | |
| useDateTime | Undocumented |
Called when an established connection is lost.
It may be useful to call connector.connect() - this will reconnect.
| Parameters | _ | Undocumented |
| reason | Undocumented (type: twisted.python.failure.Failure) |