@@ -160,7 +160,8 @@ public interface AsyncHttpClientConfig {
160
160
* @return the {@link ThreadFactory} an {@link AsyncHttpClient} use for handling asynchronous response. If no {@link ThreadFactory} has been explicitly
161
161
* provided, this method will return {@code null}
162
162
*/
163
- @ Nullable ThreadFactory getThreadFactory ();
163
+ @ Nullable
164
+ ThreadFactory getThreadFactory ();
164
165
165
166
/**
166
167
* An instance of {@link ProxyServer} used by an {@link AsyncHttpClient}
@@ -174,14 +175,16 @@ public interface AsyncHttpClientConfig {
174
175
*
175
176
* @return an instance of {@link SslContext} used for SSL connection.
176
177
*/
177
- @ Nullable SslContext getSslContext ();
178
+ @ Nullable
179
+ SslContext getSslContext ();
178
180
179
181
/**
180
182
* Return the current {@link Realm}
181
183
*
182
184
* @return the current {@link Realm}
183
185
*/
184
- @ Nullable Realm getRealm ();
186
+ @ Nullable
187
+ Realm getRealm ();
185
188
186
189
/**
187
190
* Return the list of {@link RequestFilter}
@@ -260,12 +263,14 @@ public interface AsyncHttpClientConfig {
260
263
/**
261
264
* @return the array of enabled protocols
262
265
*/
263
- @ Nullable String [] getEnabledProtocols ();
266
+ @ Nullable
267
+ String [] getEnabledProtocols ();
264
268
265
269
/**
266
270
* @return the array of enabled cipher suites
267
271
*/
268
- @ Nullable String [] getEnabledCipherSuites ();
272
+ @ Nullable
273
+ String [] getEnabledCipherSuites ();
269
274
270
275
/**
271
276
* @return if insecure cipher suites must be filtered out (only used when not explicitly passing enabled cipher suites)
@@ -294,7 +299,8 @@ public interface AsyncHttpClientConfig {
294
299
295
300
int getHandshakeTimeout ();
296
301
297
- @ Nullable SslEngineFactory getSslEngineFactory ();
302
+ @ Nullable
303
+ SslEngineFactory getSslEngineFactory ();
298
304
299
305
int getChunkedFileChunkSize ();
300
306
@@ -310,23 +316,29 @@ public interface AsyncHttpClientConfig {
310
316
311
317
Map <ChannelOption <Object >, Object > getChannelOptions ();
312
318
313
- @ Nullable EventLoopGroup getEventLoopGroup ();
319
+ @ Nullable
320
+ EventLoopGroup getEventLoopGroup ();
314
321
315
322
boolean isUseNativeTransport ();
316
323
317
324
boolean isUseOnlyEpollNativeTransport ();
318
325
319
- @ Nullable Consumer <Channel > getHttpAdditionalChannelInitializer ();
326
+ @ Nullable
327
+ Consumer <Channel > getHttpAdditionalChannelInitializer ();
320
328
321
- @ Nullable Consumer <Channel > getWsAdditionalChannelInitializer ();
329
+ @ Nullable
330
+ Consumer <Channel > getWsAdditionalChannelInitializer ();
322
331
323
332
ResponseBodyPartFactory getResponseBodyPartFactory ();
324
333
325
- @ Nullable ChannelPool getChannelPool ();
334
+ @ Nullable
335
+ ChannelPool getChannelPool ();
326
336
327
- @ Nullable ConnectionSemaphoreFactory getConnectionSemaphoreFactory ();
337
+ @ Nullable
338
+ ConnectionSemaphoreFactory getConnectionSemaphoreFactory ();
328
339
329
- @ Nullable Timer getNettyTimer ();
340
+ @ Nullable
341
+ Timer getNettyTimer ();
330
342
331
343
/**
332
344
* @return the duration between tick of {@link HashedWheelTimer}
@@ -358,7 +370,8 @@ public interface AsyncHttpClientConfig {
358
370
359
371
int getSoRcvBuf ();
360
372
361
- @ Nullable ByteBufAllocator getAllocator ();
373
+ @ Nullable
374
+ ByteBufAllocator getAllocator ();
362
375
363
376
int getIoThreadsCount ();
364
377
0 commit comments