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 ;
@@ -152,17 +153,20 @@ private class BinderClientTransportBuilder {
152
153
.setScheduledExecutorPool (executorServicePool )
153
154
.setOffloadExecutorPool (offloadServicePool );
154
155
156
+ @ CanIgnoreReturnValue
155
157
public BinderClientTransportBuilder setSecurityPolicy (SecurityPolicy securityPolicy ) {
156
158
factoryBuilder .setSecurityPolicy (securityPolicy );
157
159
return this ;
158
160
}
159
161
162
+ @ CanIgnoreReturnValue
160
163
public BinderClientTransportBuilder setBinderDecorator (
161
164
OneWayBinderProxy .Decorator binderDecorator ) {
162
165
factoryBuilder .setBinderDecorator (binderDecorator );
163
166
return this ;
164
167
}
165
168
169
+ @ CanIgnoreReturnValue
166
170
public BinderClientTransportBuilder setReadyTimeoutMillis (int timeoutMillis ) {
167
171
factoryBuilder .setReadyTimeoutMillis (timeoutMillis );
168
172
return this ;
You can’t perform that action at this time.
0 commit comments