标签: .net system.threading.channels
Channels使用静态方法CreateUnbounded<TType>或CreateBounded<TType>实例化。创建的通道将接受写操作并发出TType的读操作。
CreateUnbounded<TType>
CreateBounded<TType>
TType
在我的用例中,我想要一个写入TType但发出objects的频道。看起来这是可能的,因为类型为Channel<TWrite, TRead>,所以本质上我希望使用Channel<TWrite, object>。我有办法创建此实例吗?参见下面的截图
objects
Channel<TWrite, TRead>
Channel<TWrite, object>