File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
binder/src/androidTest/java/io/grpc/binder/internal Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 27
27
import com .google .common .util .concurrent .Futures ;
28
28
import com .google .common .util .concurrent .ListenableFuture ;
29
29
import com .google .common .util .concurrent .SettableFuture ;
30
+ import com .google .errorprone .annotations .CanIgnoreReturnValue ;
30
31
import com .google .errorprone .annotations .concurrent .GuardedBy ;
31
32
import com .google .protobuf .Empty ;
32
33
import io .grpc .CallOptions ;
@@ -154,17 +155,20 @@ private class BinderClientTransportBuilder {
154
155
.setScheduledExecutorPool (executorServicePool )
155
156
.setOffloadExecutorPool (offloadServicePool );
156
157
158
+ @ CanIgnoreReturnValue
157
159
public BinderClientTransportBuilder setSecurityPolicy (SecurityPolicy securityPolicy ) {
158
160
factoryBuilder .setSecurityPolicy (securityPolicy );
159
161
return this ;
160
162
}
161
163
164
+ @ CanIgnoreReturnValue
162
165
public BinderClientTransportBuilder setBinderDecorator (
163
166
OneWayBinderProxy .Decorator binderDecorator ) {
164
167
factoryBuilder .setBinderDecorator (binderDecorator );
165
168
return this ;
166
169
}
167
170
171
+ @ CanIgnoreReturnValue
168
172
public BinderClientTransportBuilder setReadyTimeoutMillis (int timeoutMillis ) {
169
173
factoryBuilder .setReadyTimeoutMillis (timeoutMillis );
170
174
return this ;
You can’t perform that action at this time.
0 commit comments