通道使用静态方法CreateUnbounded<TType>
或CreateBounded<TType>
. 创建的通道将接受写入并发出读取TType
.
在我的用例中,我想要一个写入TType
但发出的通道objects
。看起来这是可能的,因为有一种类型Channel<TWrite, TRead>
,所以基本上我想要一个Channel<TWrite, object>
. 有没有办法让我创建这个实例?请看下面的截图
通道使用静态方法CreateUnbounded<TType>
或CreateBounded<TType>
. 创建的通道将接受写入并发出读取TType
.
在我的用例中,我想要一个写入TType
但发出的通道objects
。看起来这是可能的,因为有一种类型Channel<TWrite, TRead>
,所以基本上我想要一个Channel<TWrite, object>
. 有没有办法让我创建这个实例?请看下面的截图