@@ -343,9 +343,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
343343 * @param data The data to be processed, use byte[] to skip serialization.
344344 * @return an empty Mono.
345345 *
346- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
347346 */
348- @ Deprecated
349347 Mono <Void > invokeBinding (String bindingName , String operation , Object data );
350348
351349 /**
@@ -357,9 +355,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
357355 * @param metadata The metadata map.
358356 * @return a Mono plan of type byte[].
359357 *
360- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
361358 */
362- @ Deprecated
363359 Mono <byte []> invokeBinding (String bindingName , String operation , byte [] data , Map <String , String > metadata );
364360
365361 /**
@@ -371,10 +367,7 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
371367 * @param type The type being returned.
372368 * @param <T> The type of the return
373369 * @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.
376370 */
377- @ Deprecated
378371 <T > Mono <T > invokeBinding (String bindingName , String operation , Object data , TypeRef <T > type );
379372
380373 /**
@@ -386,26 +379,20 @@ Mono<byte[]> invokeMethod(String appId, String methodName, byte[] request, HttpE
386379 * @param clazz The type being returned.
387380 * @param <T> The type of the return
388381 * @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.
391382 */
392- @ Deprecated
393383 <T > Mono <T > invokeBinding (String bindingName , String operation , Object data , Class <T > clazz );
394384
395385 /**
396386 * Invokes a Binding operation.
397- *
387+ *as
398388 * @param bindingName The name of the binding to call.
399389 * @param operation The operation to be performed by the binding request processor.
400390 * @param data The data to be processed, use byte[] to skip serialization.
401391 * @param metadata The metadata map.
402392 * @param type The type being returned.
403393 * @param <T> The type of the return
404394 * @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.
407395 */
408- @ Deprecated
409396 <T > Mono <T > invokeBinding (String bindingName , String operation , Object data , Map <String , String > metadata ,
410397 TypeRef <T > type );
411398
@@ -419,10 +406,7 @@ <T> Mono<T> invokeBinding(String bindingName, String operation, Object data, Map
419406 * @param clazz The type being returned.
420407 * @param <T> The type of the return
421408 * @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.
424409 */
425- @ Deprecated
426410 <T > Mono <T > invokeBinding (String bindingName , String operation , Object data , Map <String , String > metadata ,
427411 Class <T > clazz );
428412
@@ -431,10 +415,7 @@ <T> Mono<T> invokeBinding(String bindingName, String operation, Object data, Map
431415 *
432416 * @param request The binding invocation request.
433417 * @return a Mono with void.
434- *
435- * @deprecated It is recommended to use language-native HTTP clients or gRPC clients for binding invocation instead.
436418 */
437- @ Deprecated
438419 Mono <Void > invokeBinding (InvokeBindingRequest request );
439420
440421 /**
@@ -444,10 +425,7 @@ <T> Mono<T> invokeBinding(String bindingName, String operation, Object data, Map
444425 * @param type The type being returned.
445426 * @param <T> The type of the return
446427 * @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.
449428 */
450- @ Deprecated
451429 <T > Mono <T > invokeBinding (InvokeBindingRequest request , TypeRef <T > type );
452430
453431 /**
0 commit comments