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
/// <param name="source">The channel to read from.</param>
70
70
/// <param name="batchSize">The maximum size of each batch.</param>
71
71
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
72
+
/// <param name="allowSynchronousContinuations">True can reduce the amount of scheduling and markedly improve performance, but may produce unexpected or even undesirable behavior.</param>
72
73
/// <returns>A channel reader containing the batches.</returns>
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
97
+
/// <param name="allowSynchronousContinuations">True can reduce the amount of scheduling and markedly improve performance, but may produce unexpected or even undesirable behavior.</param>
97
98
/// <returns>A channel reader containing the joined results.</returns>
/// <param name="maxConcurrency">The maximum number of concurrent operations.</param>
69
+
/// <param name="maxConcurrency">The maximum number of concurrent operations. Greater than 1 may likely cause results to be out of order.</param>
70
70
/// <param name="transform">The transform function to apply the source entries before passing on to the output.</param>
71
71
/// <param name="capacity">The width of the pipe: how many entries to buffer while waiting to be read from.</param>
72
72
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
/// <param name="maxConcurrency">The maximum number of concurrent operations.</param>
111
+
/// <param name="maxConcurrency">The maximum number of concurrent operations. Greater than 1 may likely cause results to be out of order.</param>
112
112
/// <param name="transform">The transform function to apply the source entries before passing on to the output.</param>
113
113
/// <param name="capacity">The width of the pipe: how many entries to buffer while waiting to be read from.</param>
114
114
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
/// <param name="maxConcurrency">The maximum number of concurrent operations.</param>
133
+
/// <param name="maxConcurrency">The maximum number of concurrent operations. Greater than 1 may likely cause results to be out of order.</param>
134
134
/// <param name="transform">The transform function to apply the source entries before passing on to the output.</param>
135
135
/// <param name="capacity">The width of the pipe: how many entries to buffer while waiting to be read from.</param>
136
136
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
@@ -148,7 +148,7 @@ public static ChannelReader<TOut> TaskPipeAsync<TIn, TOut>(this ChannelReader<TI
148
148
/// <typeparam name="TRead">The type contained by the source channel.</typeparam>
149
149
/// <typeparam name="TOut">The outgoing type from the resultant channel.</typeparam>
/// <param name="maxConcurrency">The maximum number of concurrent operations.</param>
151
+
/// <param name="maxConcurrency">The maximum number of concurrent operations. Greater than 1 may likely cause results to be out of order.</param>
152
152
/// <param name="transform">The transform function to apply the source entries before passing on to the output.</param>
153
153
/// <param name="capacity">The width of the pipe: how many entries to buffer while waiting to be read from.</param>
154
154
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
/// <param name="maxConcurrency">The maximum number of concurrent operations.</param>
173
+
/// <param name="maxConcurrency">The maximum number of concurrent operations. Greater than 1 may likely cause results to be out of order.</param>
174
174
/// <param name="transform">The transform function to apply the source entries before passing on to the output.</param>
175
175
/// <param name="capacity">The width of the pipe: how many entries to buffer while waiting to be read from.</param>
176
176
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
/// <param name="maxConcurrency">The maximum number of concurrent operations.</param>
191
+
/// <param name="maxConcurrency">The maximum number of concurrent operations. Greater than 1 may likely cause results to be out of order.</param>
192
192
/// <param name="transform">The transform function to apply the source entries before passing on to the output.</param>
193
193
/// <param name="capacity">The width of the pipe: how many entries to buffer while waiting to be read from.</param>
194
194
/// <param name="singleReader">True will cause the resultant reader to optimize for the assumption that no concurrent read operations will occur.</param>
0 commit comments