2024-08-19 09:43:46 +08:00
|
|
|
|
---
|
|
|
|
|
title: liteyuki.comm.channel
|
|
|
|
|
order: 1
|
|
|
|
|
icon: laptop-code
|
|
|
|
|
category: API
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
### ***def*** `set_channel(name: str, channel: Channel) -> None`
|
|
|
|
|
|
|
|
|
|
设置通道实例
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
Args:
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
name: 通道名称
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
channel: 通道实例
|
|
|
|
|
|
|
|
|
|
### ***def*** `set_channels(channels: dict[str, Channel]) -> None`
|
|
|
|
|
|
|
|
|
|
设置通道实例
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
Args:
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
channels: 通道名称
|
|
|
|
|
|
|
|
|
|
### ***def*** `get_channel(name: str) -> Channel`
|
|
|
|
|
|
|
|
|
|
获取通道实例
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
Args:
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
name: 通道名称
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
|
|
### ***def*** `get_channels() -> dict[str, Channel]`
|
|
|
|
|
|
|
|
|
|
获取通道实例
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
|
|
|
|
### ***def*** `on_set_channel(data: tuple[str, dict[str, Any]]) -> None`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### ***def*** `on_get_channel(data: tuple[str, dict[str, Any]]) -> None`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### ***def*** `on_get_channels(data: tuple[str, dict[str, Any]]) -> None`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### ***def*** `decorator(func: Callable[[T], Any]) -> Callable[[T], Any]`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### ***async def*** `wrapper(data: T) -> Any`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### ***class*** `Channel(Generic[T])`
|
|
|
|
|
|
|
|
|
|
通道类,可以在进程间和进程内通信,双向但同时只能有一个发送者和一个接收者
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
有两种接收工作方式,但是只能选择一种,主动接收和被动接收,主动接收使用 `receive` 方法,被动接收使用 `on_receive` 装饰器
|
|
|
|
|
|
2024-08-19 10:04:24 +08:00
|
|
|
|
###   ***def*** `__init__(self, _id: str, type_check: bool) -> None`
|
|
|
|
|
|
|
|
|
|
 初始化通道
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
|
|
|
|
_id: 通道ID
|
|
|
|
|
|
|
|
|
|
###   ***def*** `send(self, data: T) -> None`
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
|
|
|
|
 发送数据
|
2024-08-19 09:43:46 +08:00
|
|
|
|
|
|
|
|
|
Args:
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
data: 数据
|
|
|
|
|
|
2024-08-19 10:04:24 +08:00
|
|
|
|
###   ***def*** `receive(self) -> T`
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
|
|
|
|
 接收数据
|
2024-08-19 09:43:46 +08:00
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
2024-08-19 10:04:24 +08:00
|
|
|
|
###   ***def*** `close(self) -> None`
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
|
|
|
|
 关闭通道
|
2024-08-19 09:43:46 +08:00
|
|
|
|
|
2024-08-19 10:04:24 +08:00
|
|
|
|
###   ***def*** `on_receive(self, filter_func: Optional[FILTER_FUNC]) -> Callable[[Callable[[T], Any]], Callable[[T], Any]]`
|
2024-08-19 09:43:46 +08:00
|
|
|
|
|
2024-08-19 09:55:47 +08:00
|
|
|
|
 接收数据并执行函数
|
2024-08-19 09:43:46 +08:00
|
|
|
|
|
|
|
|
|
Args:
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
filter_func: 过滤函数,为None则不过滤
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
Returns:
|
2024-08-19 09:55:47 +08:00
|
|
|
|
|
2024-08-19 09:43:46 +08:00
|
|
|
|
装饰器,装饰一个函数在接收到数据后执行
|
|
|
|
|
|