当前位置: 首页>>代码示例>>Python>>正文


Python Message._load_properties方法代码示例

本文整理汇总了Python中amqp.basic_message.Message._load_properties方法的典型用法代码示例。如果您正苦于以下问题:Python Message._load_properties方法的具体用法?Python Message._load_properties怎么用?Python Message._load_properties使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在amqp.basic_message.Message的用法示例。


在下文中一共展示了Message._load_properties方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_load_properties

# 需要导入模块: from amqp.basic_message import Message [as 别名]
# 或者: from amqp.basic_message.Message import _load_properties [as 别名]
 def test_load_properties(self):
     m = Message()
     m.properties = {
         'content_type': 'application/json',
         'content_encoding': 'utf-8',
         'application_headers': {
             'foo': 1,
             'id': 'id#1',
         },
         'delivery_mode': 1,
         'priority': 255,
         'correlation_id': 'df31-142f-34fd-g42d',
         'reply_to': 'cosmo',
         'expiration': '2015-12-23',
         'message_id': '3312',
         'timestamp': 3912491234,
         'type': 'generic',
         'user_id': 'george',
         'app_id': 'vandelay',
         'cluster_id': 'NYC',
     }
     s = m._serialize_properties()
     m2 = Message()
     m2._load_properties(m2.CLASS_ID, s)
     assert m2.properties == m.properties
开发者ID:air-upc,项目名称:py-amqp,代码行数:27,代码来源:test_serialization.py

示例2: check_proplist

# 需要导入模块: from amqp.basic_message import Message [as 别名]
# 或者: from amqp.basic_message.Message import _load_properties [as 别名]
    def check_proplist(self, msg):
        """
        Check roundtrip processing of a single object

        """
        raw_properties = msg._serialize_properties()

        new_msg = Message()
        new_msg._load_properties(raw_properties)
        new_msg.body = msg.body

        self.assertEqual(msg, new_msg)
开发者ID:SYNchroACK,项目名称:crits_dependencies,代码行数:14,代码来源:test_basic_message.py

示例3: test_load_properties__some_missing

# 需要导入模块: from amqp.basic_message import Message [as 别名]
# 或者: from amqp.basic_message.Message import _load_properties [as 别名]
 def test_load_properties__some_missing(self):
     m = Message()
     m.properties = {
         'content_type': 'application/json',
         'content_encoding': 'utf-8',
         'delivery_mode': 1,
         'correlation_id': 'df31-142f-34fd-g42d',
         'reply_to': 'cosmo',
         'expiration': '2015-12-23',
         'message_id': '3312',
         'type': None,
         'app_id': None,
         'cluster_id': None,
     }
     s = m._serialize_properties()
     m2 = Message()
     m2._load_properties(m2.CLASS_ID, s)
开发者ID:air-upc,项目名称:py-amqp,代码行数:19,代码来源:test_serialization.py

示例4: test_load_properties

# 需要导入模块: from amqp.basic_message import Message [as 别名]
# 或者: from amqp.basic_message.Message import _load_properties [as 别名]
 def test_load_properties(self):
     m = Message()
     m.properties = {
         "content_type": "application/json",
         "content_encoding": "utf-8",
         "application_headers": {"foo": 1, "id": "id#1"},
         "delivery_mode": 1,
         "priority": 255,
         "correlation_id": "df31-142f-34fd-g42d",
         "reply_to": "cosmo",
         "expiration": "2015-12-23",
         "message_id": "3312",
         "timestamp": 3912491234,
         "type": "generic",
         "user_id": "george",
         "app_id": "vandelay",
         "cluster_id": "NYC",
     }
     s = m._serialize_properties()
     m2 = Message()
     m2._load_properties(m2.CLASS_ID, s)
     self.assertDictEqual(m2.properties, m.properties)
开发者ID:c0b,项目名称:py-amqp,代码行数:24,代码来源:test_serialization.py


注:本文中的amqp.basic_message.Message._load_properties方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。