MCPcopy Index your code
hub / github.com/reactive-python/reactpy / send

Method send

src/py/reactpy/reactpy/backend/tornado.py:190–191  ·  view source on GitHub ↗
(value: Any)

Source from the content-addressed store, hash-verified

188 message_queue: AsyncQueue[str] = AsyncQueue()
189
190 async def send(value: Any) -> None:
191 await self.write_message(json.dumps(value))
192
193 async def recv() -> Any:
194 return json.loads(await message_queue.get())

Callers 3

sendMessageMethod · 0.80
sendFunction · 0.80
sock_sendFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected