Compartir a través de


Channel.CreateUnbounded Método

Definición

Sobrecargas

CreateUnbounded<T>()

Crea un canal ilimitado que puede ser utilizado por cualquier número de lectores y escritores al mismo tiempo.

CreateUnbounded<T>(UnboundedChannelOptions)

Crea un canal ilimitado sujeto a las opciones proporcionadas.

CreateUnbounded<T>()

Crea un canal ilimitado que puede ser utilizado por cualquier número de lectores y escritores al mismo tiempo.

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

Tipo de datos en el canal.

Devoluciones

Channel<T>

El canal creado.

Se aplica a

CreateUnbounded<T>(UnboundedChannelOptions)

Crea un canal ilimitado sujeto a las opciones proporcionadas.

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 el tipo de datos en el canal.

Parámetros

options
UnboundedChannelOptions

Opciones que guían el comportamiento del canal.

Devoluciones

Channel<T>

El canal creado.

Se aplica a