mirror of https://github.com/grpc/grpc-java.git
ForwardingClientCall.getAttributes should call delegate
This commit is contained in:
parent
5bae984a88
commit
7d85e73b23
|
|
@ -77,6 +77,11 @@ public abstract class ForwardingClientCall<ReqT, RespT> extends ClientCall<ReqT,
|
|||
return delegate().isReady();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Attributes getAttributes() {
|
||||
return delegate().getAttributes();
|
||||
}
|
||||
|
||||
/**
|
||||
* A simplified version of {@link ForwardingClientCall} where subclasses can pass in a {@link
|
||||
* ClientCall} as the delegate.
|
||||
|
|
|
|||
Loading…
Reference in New Issue