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
/// Process all records in this stream, one record at a time, by applying a processor (provided by the given
1931
1931
/// <see cref="ProcessorSupplier{K,V}"/>.
@@ -1963,12 +1963,13 @@ void ForeachAsync(
1963
1963
/// </summary>
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>
/// 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 ).
2019
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
@@ -2053,9 +2055,10 @@ void ForeachAsync(
2053
2055
/// </summary>
2054
2056
/// <param name="transformerSupplier">an instance of <see cref="TransformerSupplier{K,V,K,V1}"/> which contains the transformer</param>
2055
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>
2056
2059
/// <typeparam name="V1">the value type of the new stream</typeparam>
2057
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