Merge "Trivial: Add executor 'threading' in docstring"

This commit is contained in:
Jenkins 2017-03-29 12:18:21 +00:00 committed by Gerrit Code Review
commit 3525e35d37
3 changed files with 8 additions and 8 deletions
oslo_messaging

@ -225,8 +225,8 @@ def get_notification_listener(transport, targets, endpoints,
:type targets: list of Target
:param endpoints: a list of endpoint objects
:type endpoints: list
:param executor: name of a message executor - for example
'eventlet', 'blocking'
:param executor: name of message executor - available values are
'eventlet', 'blocking' and 'threading'
:type executor: str
:param serializer: an optional entity serializer
:type serializer: Serializer
@ -261,8 +261,8 @@ def get_batch_notification_listener(transport, targets, endpoints,
:type targets: list of Target
:param endpoints: a list of endpoint objects
:type endpoints: list
:param executor: name of a message executor - for example
'eventlet', 'blocking'
:param executor: name of message executor - available values are
'eventlet', 'blocking' and 'threading'
:type executor: str
:param serializer: an optional entity serializer
:type serializer: Serializer

@ -198,8 +198,8 @@ def get_rpc_server(transport, target, endpoints,
:type target: Target
:param endpoints: a list of endpoint objects
:type endpoints: list
:param executor: name of a message executor - for example
'eventlet', 'blocking'
:param executor: name of message executor - available values are
'eventlet', 'blocking' and 'threading'
:type executor: str
:param serializer: an optional entity serializer
:type serializer: Serializer

@ -321,8 +321,8 @@ class MessageHandlingServer(service.ServiceBase, _OrderedTaskRunner):
:param dispatcher: has a dispatch() method which is invoked for each
incoming request
:type dispatcher: DispatcherBase
:param executor: name of message executor - for example
'eventlet', 'blocking'
:param executor: name of message executor - available values are
'eventlet', 'blocking' and 'threading'
:type executor: str
"""
self.conf = transport.conf