You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Uses <see cref="ChannelWriter{T}.WaitToWriteAsync(CancellationToken)"/> to peek and see if the channel can still be written to.
74
123
/// </summary>
@@ -271,13 +320,7 @@ public static ChannelReader<T> ToChannel<T>(this IEnumerable<T> source,
271
320
/// <summary>
272
321
/// Writes all entries from the source to a channel and calls complete when finished.
273
322
/// </summary>
274
-
/// <typeparam name="T">The input type of the channel.</typeparam>
275
-
/// <param name="source">The source data to use.</param>
276
-
/// <param name="capacity">The optional bounded capacity of the channel. Default is unbound.</param>
277
-
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
278
-
/// <param name="deferredExecution">If true, calls await Task.Yield() before writing to the channel.</param>
/// Writes all entries from the source to a channel and calls complete when finished.
306
-
/// </summary>
307
-
/// <typeparam name="T">The input type of the channel.</typeparam>
308
342
/// <param name="source">The source data to use.</param>
309
-
/// <param name="capacity">The optional bounded capacity of the channel. Default is unbound.</param>
343
+
/// <param name="capacity">The optional bounded capacity of the channel.</param>
310
344
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
@@ -395,28 +424,18 @@ public static ChannelReader<T> ToChannelAsync<T>(this IEnumerable<Func<T>> sourc
395
424
/// <summary>
396
425
/// Asynchronously executes all entries and writes their results to a channel.
397
426
/// </summary>
398
-
/// <typeparam name="T">The input type of the channel.</typeparam>
399
-
/// <param name="source">The asynchronous source data to use.</param>
400
-
/// <param name="capacity">The optional bounded capacity of the channel. Default is unbound.</param>
401
-
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
402
-
/// <param name="maxConcurrency">The maximum number of concurrent operations. Greater than 1 may likely cause results to be out of order.</param>
/// Writes all entries from the source to a channel and calls complete when finished.
459
-
/// </summary>
460
-
/// <typeparam name="T">The input type of the channel.</typeparam>
461
-
/// <param name="source">The asynchronous source data to use.</param>
462
-
/// <param name="capacity">The optional bounded capacity of the channel. Default is unbound.</param>
463
-
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
464
-
/// <param name="maxConcurrency">The maximum number of concurrent operations. Greater than 1 may likely cause results to be out of order.</param>
0 commit comments