Aracılığıyla paylaş


Channel.CreateUnbounded Yöntem

Tanım

Aşırı Yüklemeler

CreateUnbounded<T>()

Herhangi bir sayıda okuyucu ve yazar tarafından eşzamanlı olarak kullanılabilen ilişkisiz bir kanal oluşturur.

CreateUnbounded<T>(UnboundedChannelOptions)

Sağlanan seçeneklere tabi olan ilişkisiz bir kanal oluşturur.

CreateUnbounded<T>()

Herhangi bir sayıda okuyucu ve yazar tarafından eşzamanlı olarak kullanılabilen ilişkisiz bir kanal oluşturur.

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)

Tür Parametreleri

T

Kanaldaki veri türü.

Döndürülenler

Channel<T>

Oluşturulan kanal.

Şunlara uygulanır

CreateUnbounded<T>(UnboundedChannelOptions)

Sağlanan seçeneklere tabi olan ilişkisiz bir kanal oluşturur.

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)

Tür Parametreleri

T

Kanaldaki veri türünü belirtir.

Parametreler

options
UnboundedChannelOptions

Kanalın davranışına yol gösteren seçenekler.

Döndürülenler

Channel<T>

Oluşturulan kanal.

Şunlara uygulanır