| | |
- __builtin__.object
-
- TCPSupport
-
- ServerTCPSupport(TCPSupport, __builtin__.object)
class ServerTCPSupport(TCPSupport, __builtin__.object) |
| | |
- Method resolution order:
- ServerTCPSupport
- TCPSupport
- __builtin__.object
Methods defined here:
- get_accept_backlog(self)
- set_accept_backlog(self, val)
- Set the accept backlog
Keyword arguments:
@param val: set the accept backlog to the value
return a reference to self so invocations can be chained
Data descriptors defined here:
- accept_backlog
Methods inherited from TCPSupport:
- get_receive_buffer_size(self)
- get_reuse_address(self)
- get_send_buffer_size(self)
- get_so_linger(self)
- get_tcp_keep_alive(self)
- get_tcp_no_delay(self)
- get_traffic_class(self)
- get_use_pooled_buffers(self)
- set_receive_buffer_size(self, bytes)
- Set the TCP receive buffer size.
Keyword arguments:
@param bytes: The size in bytes.
return a reference to self so invocations can be chained
- set_reuse_address(self, val)
- Set the TCP reuse address setting.
Keyword arguments:
@param val: If true, then TCP reuse address will be enabled.
@return: a reference to self so invocations can be chained
- set_send_buffer_size(self, bytes)
- Set the TCP send buffer size.
Keyword arguments:
@param bytes: The size in bytes.
return a reference to self so invocations can be chained
- set_so_linger(self, val)
- Set the TCP so linger setting.
Keyword arguments:
@param val: If true, then TCP so linger will be enabled.
return a reference to self so invocations can be chained
- set_tcp_keep_alive(self, val)
- Set the TCP keep alive setting.
Keyword arguments:
@param val: If true, then TCP keep alive will be enabled.
return a reference to self so invocations can be chained
- set_tcp_no_delay(self, val)
- Enable TCP_NO_DELAY
Keyword arguments:
@param val: if true TCP_NO_DELAY will be enabled
return a reference to self so invocations can be chained
- set_traffic_class(self, val)
- Set the TCP traffic class setting.
Keyword arguments:
@param val: The TCP traffic class setting.
return a reference to self so invocations can be chained
- set_use_pooled_buffers(self, val)
- Set if vert.x should use pooled buffers for performance reasons.
Doing so will give the best throughput but may need a bit higher memory footprint.
Keyword arguments:
@param val: if true pooled buffers will be used.
return a reference to self so invocations can be chained
Data descriptors inherited from TCPSupport:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
- receive_buffer_size
- reuse_address
- send_buffer_size
- so_linger
- tcp_keep_alive
- tcp_no_delay
- traffic_class
- use_pooled_buffers
|
class TCPSupport(__builtin__.object) |
| |
Mixin module that provides all the common TCP params that can be set. |
| |
Methods defined here:
- get_receive_buffer_size(self)
- get_reuse_address(self)
- get_send_buffer_size(self)
- get_so_linger(self)
- get_tcp_keep_alive(self)
- get_tcp_no_delay(self)
- get_traffic_class(self)
- get_use_pooled_buffers(self)
- set_receive_buffer_size(self, bytes)
- Set the TCP receive buffer size.
Keyword arguments:
@param bytes: The size in bytes.
return a reference to self so invocations can be chained
- set_reuse_address(self, val)
- Set the TCP reuse address setting.
Keyword arguments:
@param val: If true, then TCP reuse address will be enabled.
@return: a reference to self so invocations can be chained
- set_send_buffer_size(self, bytes)
- Set the TCP send buffer size.
Keyword arguments:
@param bytes: The size in bytes.
return a reference to self so invocations can be chained
- set_so_linger(self, val)
- Set the TCP so linger setting.
Keyword arguments:
@param val: If true, then TCP so linger will be enabled.
return a reference to self so invocations can be chained
- set_tcp_keep_alive(self, val)
- Set the TCP keep alive setting.
Keyword arguments:
@param val: If true, then TCP keep alive will be enabled.
return a reference to self so invocations can be chained
- set_tcp_no_delay(self, val)
- Enable TCP_NO_DELAY
Keyword arguments:
@param val: if true TCP_NO_DELAY will be enabled
return a reference to self so invocations can be chained
- set_traffic_class(self, val)
- Set the TCP traffic class setting.
Keyword arguments:
@param val: The TCP traffic class setting.
return a reference to self so invocations can be chained
- set_use_pooled_buffers(self, val)
- Set if vert.x should use pooled buffers for performance reasons.
Doing so will give the best throughput but may need a bit higher memory footprint.
Keyword arguments:
@param val: if true pooled buffers will be used.
return a reference to self so invocations can be chained
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
- receive_buffer_size
- reuse_address
- send_buffer_size
- so_linger
- tcp_keep_alive
- tcp_no_delay
- traffic_class
- use_pooled_buffers
| |