wegod commented on issue #11644:
URL: https://github.com/apache/dubbo/issues/11644#issuecomment-1445853967

   I add two compatible method implements and it works. 
   CompatibleInvoker add method:
   `        @Override
           public org.apache.dubbo.rpc.Result 
invoke(org.apache.dubbo.rpc.Invocation invocation) throws 
org.apache.dubbo.rpc.RpcException {
               return new Result.CompatibleResult(invoker.invoke(invocation));
           }`
   
   CompatibleResult add method:
   `        @Override
           public org.apache.dubbo.rpc.Result 
whenCompleteWithContext(BiConsumer<org.apache.dubbo.rpc.Result, Throwable> fn) {
               return delegate.whenCompleteWithContext(fn);
           }`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to