class documentation
class StreamServerEndpointService(service.Service): (source)
Constructor: StreamServerEndpointService(endpoint, factory)
A StreamServerEndpointService is an IService which runs a server on a listening port described by an IStreamServerEndpoint.
| Present Since | |
| 10.2 |
| Method | __init__ |
Undocumented |
| Method | privileged |
Start listening on the endpoint. |
| Method | start |
Start listening on the endpoint, unless privilegedStartService got around to it already. |
| Method | stop |
Stop listening on the port if it is already listening, otherwise, cancel the attempt to listen. |
| Instance Variable | endpoint |
An IStreamServerEndpoint provider which will be used to listen when the service starts. |
| Instance Variable | factory |
A server factory which will be used to listen on the endpoint. |
| Instance Variable | _raise |
Defines error-handling behavior for the case where listen(...) raises an exception before startService or privilegedStartService have completed. |
| Instance Variable | _waiting |
a Deferred, if listen has yet been invoked on the endpoint, otherwise None. |
Inherited from Service:
| Method | __getstate__ |
Undocumented |
| Method | disown |
Use this API to remove an IService from an IServiceCollection. |
| Method | set |
Set the name of the service. |
| Method | set |
Set the parent of the service. This method is responsible for setting the parent attribute on this service (the child service). |
| Instance Variable | name |
A str which is the name of the service or None. |
| Instance Variable | parent |
An IServiceCollection which is the parent or None. |
| Instance Variable | running |
A boolean which indicates whether the service is running. |
Stop listening on the port if it is already listening, otherwise, cancel the attempt to listen.
| Returns | |
a Deferred which fires with None when the port has stopped listening. |