Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

26 rindas
732 B

  1. cdef class UVStreamServer(UVSocketHandle):
  2. cdef:
  3. int backlog
  4. object ssl
  5. object ssl_handshake_timeout
  6. object ssl_shutdown_timeout
  7. object protocol_factory
  8. bint opened
  9. Server _server
  10. # All "inline" methods are final
  11. cdef inline _init(self, Loop loop, object protocol_factory,
  12. Server server,
  13. object backlog,
  14. object ssl,
  15. object ssl_handshake_timeout,
  16. object ssl_shutdown_timeout)
  17. cdef inline _mark_as_open(self)
  18. cdef inline listen(self)
  19. cdef inline _on_listen(self)
  20. cdef UVStream _make_new_transport(self, object protocol, object waiter)