Compartilhar via


Channel.CreateUnbounded Método

Definição

Sobrecargas

CreateUnbounded<T>()

Cria um canal sem limites utilizável por qualquer número de leitores e gravadores simultaneamente.

CreateUnbounded<T>(UnboundedChannelOptions)

Cria um canal sem limites sujeito às opções fornecidas.

CreateUnbounded<T>()

Origem:
Channel.cs
Origem:
Channel.cs
Origem:
Channel.cs

Cria um canal sem limites utilizável por qualquer número de leitores e gravadores simultaneamente.

public:
generic <typename T>
 static System::Threading::Channels::Channel<T> ^ CreateUnbounded();
public static System.Threading.Channels.Channel<T> CreateUnbounded<T> ();
static member CreateUnbounded : unit -> System.Threading.Channels.Channel<'T>
Public Shared Function CreateUnbounded(Of T) () As Channel(Of T)

Parâmetros de tipo

T

O tipo de dados no canal.

Retornos

O canal criado.

Aplica-se a

CreateUnbounded<T>(UnboundedChannelOptions)

Origem:
Channel.cs
Origem:
Channel.cs
Origem:
Channel.cs

Cria um canal sem limites sujeito às opções fornecidas.

public:
generic <typename T>
 static System::Threading::Channels::Channel<T> ^ CreateUnbounded(System::Threading::Channels::UnboundedChannelOptions ^ options);
public static System.Threading.Channels.Channel<T> CreateUnbounded<T> (System.Threading.Channels.UnboundedChannelOptions options);
static member CreateUnbounded : System.Threading.Channels.UnboundedChannelOptions -> System.Threading.Channels.Channel<'T>
Public Shared Function CreateUnbounded(Of T) (options As UnboundedChannelOptions) As Channel(Of T)

Parâmetros de tipo

T

Especifica o tipo de dados no canal.

Parâmetros

options
UnboundedChannelOptions

Opções que orientam o comportamento do canal.

Retornos

O canal criado.

Aplica-se a