@@ -342,10 +342,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
342342 * @param operation The operation to be performed by the binding request processor.
343343 * @param data The data to be processed, use byte[] to skip serialization.
344344 * @return an empty Mono.
345- *
346- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
347345 */
348- @ Deprecated
349346 Mono <Void > invokeBinding (String bindingName , String operation , Object data );
350347
351348 /**
@@ -356,10 +353,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
356353 * @param data The data to be processed, skipping serialization.
357354 * @param metadata The metadata map.
358355 * @return a Mono plan of type byte[].
359- *
360- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
361356 */
362- @ Deprecated
363357 Mono <byte []> invokeBinding (String bindingName , String operation , byte [] data , Map <String , String > metadata );
364358
365359 /**
@@ -371,10 +365,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
371365 * @param type The type being returned.
372366 * @param <T> The type of the return
373367 * @return a Mono plan of type T.
374- *
375- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
376368 */
377- @ Deprecated
378369 <T > Mono <T > invokeBinding (String bindingName , String operation , Object data , TypeRef <T > type );
379370
380371 /**
@@ -386,26 +377,20 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
386377 * @param clazz The type being returned.
387378 * @param <T> The type of the return
388379 * @return a Mono plan of type T.
389- *
390- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
391380 */
392- @ Deprecated
393381 <T > Mono <T > invokeBinding (String bindingName , String operation , Object data , Class <T > clazz );
394382
395383 /**
396384 * Invokes a Binding operation.
397- *
385+ *as
398386 * @param bindingName The name of the binding to call.
399387 * @param operation The operation to be performed by the binding request processor.
400388 * @param data The data to be processed, use byte[] to skip serialization.
401389 * @param metadata The metadata map.
402390 * @param type The type being returned.
403391 * @param <T> The type of the return
404392 * @return a Mono plan of type T.
405- *
406- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
407393 */
408- @ Deprecated
409394 <T > Mono <T > invokeBinding (String bindingName , String operation , Object data , Map <String , String > metadata ,
410395 TypeRef <T > type );
411396
@@ -419,10 +404,7 @@ <T> Mono<T> invokeBinding(String bindingName, String operation, Object data, Map
419404 * @param clazz The type being returned.
420405 * @param <T> The type of the return
421406 * @return a Mono plan of type T.
422- *
423- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
424407 */
425- @ Deprecated
426408 <T > Mono <T > invokeBinding (String bindingName , String operation , Object data , Map <String , String > metadata ,
427409 Class <T > clazz );
428410
@@ -431,10 +413,7 @@ <T> Mono<T> invokeBinding(String bindingName, String operation, Object data, Map
431413 *
432414 * @param request The binding invocation request.
433415 * @return a Mono with void.
434- *
435- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
436416 */
437- @ Deprecated
438417 Mono <Void > invokeBinding (InvokeBindingRequest request );
439418
440419 /**
@@ -444,10 +423,7 @@ <T> Mono<T> invokeBinding(String bindingName, String operation, Object data, Map
444423 * @param type The type being returned.
445424 * @param <T> The type of the return
446425 * @return a Mono plan of type T.
447- *
448- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
449426 */
450- @ Deprecated
451427 <T > Mono <T > invokeBinding (InvokeBindingRequest request , TypeRef <T > type );
452428
453429 /**
0 commit comments