Channel 类

定义

提供用于创建通道的静态方法。

public ref class Channel abstract sealed
public static class Channel
type Channel = class
Public Class Channel
继承
Channel

方法

CreateBounded<T>(BoundedChannelOptions)

创建具有指定最大容量的通道。

CreateBounded<T>(BoundedChannelOptions, Action<T>)

创建受提供选项约束的频道。

CreateBounded<T>(Int32)

创建具有指定最大容量的通道。

CreateUnbounded<T>()

同时创建可由任意数量的读取器和编写器使用的无限通道。

CreateUnbounded<T>(UnboundedChannelOptions)

创建不受限制的通道,但受提供的选项的约束。

CreateUnboundedPrioritized<T>()

同时创建任意数量的读取器和编写器可使用的无限优先通道。

CreateUnboundedPrioritized<T>(UnboundedPrioritizedChannelOptions<T>)

创建一个不受限制的优先通道,但受提供的选项的约束。

适用于