本文整理汇总了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())
)
}
)
示例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)
示例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)