@@ -850,7 +850,7 @@ <GK, GV, RV> KStreamX<K, RV> leftJoin(GlobalKTable<GK, GV> globalTable,
850850
851851 @ Override
852852 <KOut , VOut > KStreamX <KOut , VOut > process (
853- ProcessorSupplier <? super K , ? super V , KOut , VOut > processorSupplier ,
853+ ProcessorSupplier <? super K , ? super V , ? extends KOut , ? extends VOut > processorSupplier ,
854854 String ... stateStoreNames );
855855
856856 /**
@@ -866,7 +866,7 @@ <KOut, VOut> KStreamX<KOut, VOut> process(
866866 * @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier)
867867 */
868868 <KOut , VOut > KErrorStreamX <K , V , KOut , VOut > processCapturingErrors (
869- ProcessorSupplier <? super K , ? super V , KOut , VOut > processorSupplier ,
869+ ProcessorSupplier <? super K , ? super V , ? extends KOut , ? extends VOut > processorSupplier ,
870870 String ... stateStoreNames );
871871
872872 /**
@@ -883,13 +883,13 @@ <KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
883883 * @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier, java.util.function.Predicate)
884884 */
885885 <KOut , VOut > KErrorStreamX <K , V , KOut , VOut > processCapturingErrors (
886- ProcessorSupplier <? super K , ? super V , KOut , VOut > processorSupplier ,
886+ ProcessorSupplier <? super K , ? super V , ? extends KOut , ? extends VOut > processorSupplier ,
887887 java .util .function .Predicate <Exception > errorFilter ,
888888 String ... stateStoreNames );
889889
890890 @ Override
891891 <KOut , VOut > KStreamX <KOut , VOut > process (
892- ProcessorSupplier <? super K , ? super V , KOut , VOut > processorSupplier ,
892+ ProcessorSupplier <? super K , ? super V , ? extends KOut , ? extends VOut > processorSupplier ,
893893 Named named , String ... stateStoreNames );
894894
895895 /**
@@ -906,7 +906,7 @@ <KOut, VOut> KStreamX<KOut, VOut> process(
906906 * @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier)
907907 */
908908 <KOut , VOut > KErrorStreamX <K , V , KOut , VOut > processCapturingErrors (
909- ProcessorSupplier <? super K , ? super V , KOut , VOut > processorSupplier ,
909+ ProcessorSupplier <? super K , ? super V , ? extends KOut , ? extends VOut > processorSupplier ,
910910 Named named , String ... stateStoreNames );
911911
912912 /**
@@ -924,13 +924,13 @@ <KOut, VOut> KErrorStreamX<K, V, KOut, VOut> processCapturingErrors(
924924 * @see ErrorCapturingProcessor#captureErrors(ProcessorSupplier, java.util.function.Predicate)
925925 */
926926 <KOut , VOut > KErrorStreamX <K , V , KOut , VOut > processCapturingErrors (
927- ProcessorSupplier <? super K , ? super V , KOut , VOut > processorSupplier ,
927+ ProcessorSupplier <? super K , ? super V , ? extends KOut , ? extends VOut > processorSupplier ,
928928 java .util .function .Predicate <Exception > errorFilter ,
929929 Named named , String ... stateStoreNames );
930930
931931 @ Override
932932 <VOut > KStreamX <K , VOut > processValues (
933- FixedKeyProcessorSupplier <? super K , ? super V , VOut > processorSupplier ,
933+ FixedKeyProcessorSupplier <? super K , ? super V , ? extends VOut > processorSupplier ,
934934 String ... stateStoreNames );
935935
936936 /**
@@ -947,7 +947,7 @@ <VOut> KStreamX<K, VOut> processValues(
947947 * @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier)
948948 */
949949 <VOut > KErrorStreamX <K , V , K , VOut > processValuesCapturingErrors (
950- FixedKeyProcessorSupplier <? super K , ? super V , VOut > processorSupplier ,
950+ FixedKeyProcessorSupplier <? super K , ? super V , ? extends VOut > processorSupplier ,
951951 String ... stateStoreNames );
952952
953953 /**
@@ -965,13 +965,13 @@ <VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
965965 * @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier, java.util.function.Predicate)
966966 */
967967 <VOut > KErrorStreamX <K , V , K , VOut > processValuesCapturingErrors (
968- FixedKeyProcessorSupplier <? super K , ? super V , VOut > processorSupplier ,
968+ FixedKeyProcessorSupplier <? super K , ? super V , ? extends VOut > processorSupplier ,
969969 java .util .function .Predicate <Exception > errorFilter ,
970970 String ... stateStoreNames );
971971
972972 @ Override
973973 <VOut > KStreamX <K , VOut > processValues (
974- FixedKeyProcessorSupplier <? super K , ? super V , VOut > processorSupplier ,
974+ FixedKeyProcessorSupplier <? super K , ? super V , ? extends VOut > processorSupplier ,
975975 Named named , String ... stateStoreNames );
976976
977977 /**
@@ -989,7 +989,7 @@ <VOut> KStreamX<K, VOut> processValues(
989989 * @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier)
990990 */
991991 <VOut > KErrorStreamX <K , V , K , VOut > processValuesCapturingErrors (
992- FixedKeyProcessorSupplier <? super K , ? super V , VOut > processorSupplier ,
992+ FixedKeyProcessorSupplier <? super K , ? super V , ? extends VOut > processorSupplier ,
993993 Named named , String ... stateStoreNames );
994994
995995 /**
@@ -1008,7 +1008,7 @@ <VOut> KErrorStreamX<K, V, K, VOut> processValuesCapturingErrors(
10081008 * @see ErrorCapturingValueProcessor#captureErrors(FixedKeyProcessorSupplier, java.util.function.Predicate)
10091009 */
10101010 <VOut > KErrorStreamX <K , V , K , VOut > processValuesCapturingErrors (
1011- FixedKeyProcessorSupplier <? super K , ? super V , VOut > processorSupplier ,
1011+ FixedKeyProcessorSupplier <? super K , ? super V , ? extends VOut > processorSupplier ,
10121012 java .util .function .Predicate <Exception > errorFilter ,
10131013 Named named , String ... stateStoreNames );
10141014}
0 commit comments