Condividi tramite


Channel.CreateUnbounded Metodo

Definizione

Overload

CreateUnbounded<T>()

Crea un canale senza vincoli utilizzabile contemporaneamente da qualsiasi numero di lettori e writer.

CreateUnbounded<T>(UnboundedChannelOptions)

Crea un canale senza vincoli soggetto alle opzioni specificate.

CreateUnbounded<T>()

Origine:
Channel.cs
Origine:
Channel.cs
Origine:
Channel.cs

Crea un canale senza vincoli utilizzabile contemporaneamente da qualsiasi numero di lettori e writer.

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)

Parametri di tipo

T

Tipo di dati nel canale.

Restituisce

Canale creato.

Si applica a

CreateUnbounded<T>(UnboundedChannelOptions)

Origine:
Channel.cs
Origine:
Channel.cs
Origine:
Channel.cs

Crea un canale senza vincoli soggetto alle opzioni specificate.

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)

Parametri di tipo

T

Specifica il tipo di dati nel canale.

Parametri

options
UnboundedChannelOptions

Opzioni che influiscono sul comportamento del canale.

Restituisce

Canale creato.

Si applica a