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
Copy file name to clipboardExpand all lines: core/Stream/IKStream.cs
+9-7
Original file line number
Diff line number
Diff line change
@@ -1964,12 +1964,12 @@ void ForeachAsync(
1964
1964
/// <param name="processorSupplier">an instance of <see cref="ProcessorSupplier{K,V}"/> which contains the processor and a potential state store. Use <see cref="ProcessorBuilder"/> to build this supplier.</param>
1965
1965
/// <param name="named">A <see cref="string"/> config used to name the processor in the topology. Default : null</param>
1966
1966
/// <param name="storeNames">The names of the state stores used by the processor.</param>
/// Transform each record of the input stream into zero or one record in the output stream (only value type, the original key will be through to the upstream processors ).
2020
2021
/// A <see cref="Transform{K,V1}"/> (provided by the given <see cref="TransformerSupplier{K,V,K,V1}"/>) is applied to each input record and
@@ -2054,9 +2055,10 @@ void ForeachAsync(
2054
2055
/// </summary>
2055
2056
/// <param name="transformerSupplier">an instance of <see cref="TransformerSupplier{K,V,K,V1}"/> which contains the transformer</param>
2056
2057
/// <param name="named">A <see cref="string"/> config used to name the processor in the topology. Default : null</param>
2058
+
/// <param name="storeNames">The names of the state stores used by the processor.</param>
2057
2059
/// <typeparam name="V1">the value type of the new stream</typeparam>
2058
2060
/// <returns>a <see cref="IKStream{K,V1}"/> that contains more or less records with new key and value (possibly of different type)</returns>
0 commit comments