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


Python routing.ProtocolTypeRouter方法代码示例

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


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

示例1: create_application

# 需要导入模块: from channels import routing [as 别名]
# 或者: from channels.routing import ProtocolTypeRouter [as 别名]
def create_application() -> ProtocolTypeRouter:
    """Create an ASGI application."""
    # Load static modules on startup.
    #
    # This means starting a kernel and validating all static modules. There are
    # two good reasons to load during startup:
    #
    # 1. In dev mode, this reports errors in modules ASAP -- during startup
    # 2. In production, this import line costs time -- better to incur that
    #    cost during startup than to incur it when responding to some random
    #    request.
    cjwstate.modules.init_module_system()
    if not settings.I_AM_TESTING:
        # Only the test environment, Django runs migrations itself. We can't
        # use MODULE_REGISTRY until it migrates.
        MODULE_REGISTRY.all_latest()

    return ProtocolTypeRouter(
        {
            "websocket": AuthMiddlewareStack(
                SetCurrentLocaleAsgiMiddleware(create_url_router())
            )
        }
    ) 
开发者ID:CJWorkbench,项目名称:cjworkbench,代码行数:26,代码来源:asgi.py

示例2: test_routing

# 需要导入模块: from channels import routing [as 别名]
# 或者: from channels.routing import ProtocolTypeRouter [as 别名]
def test_routing(self):
        from openwisp_controller.geo.channels.routing import channel_routing

        assert isinstance(channel_routing, ProtocolTypeRouter) 
开发者ID:openwisp,项目名称:openwisp-controller,代码行数:6,代码来源:pytest.py

示例3: test_routing

# 需要导入模块: from channels import routing [as 别名]
# 或者: from channels.routing import ProtocolTypeRouter [as 别名]
def test_routing(self):
        from django_loci.channels.routing import channel_routing

        assert isinstance(channel_routing, ProtocolTypeRouter) 
开发者ID:openwisp,项目名称:django-loci,代码行数:6,代码来源:test_channels.py


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