Channel.CreateUnbounded Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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
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
El canal creado.