MCPcopy
hub / github.com/encode/starlette / handle

Method handle

starlette/routing.py:349–350  ·  starlette/routing.py::WebSocketRoute.handle
(self, scope: Scope, receive: Receive, send: Send)

Source from the content-addressed store, hash-verified

347 return URLPath(path=path, protocol=class="st">"websocket")
348
349 async def handle(self, scope: Scope, receive: Receive, send: Send) -> None:
350 await self.app(scope, receive, send)
351
352 def __eq__(self, other: Any) -> bool:
353 return isinstance(other, WebSocketRoute) and self.path == other.path and self.endpoint == other.endpoint

Callers

nothing calls this directly

Calls 1

appMethod · 0.45

Tested by

no test coverage detected