@@ -160,7 +160,8 @@ public interface AsyncHttpClientConfig {
160160 * @return the {@link ThreadFactory} an {@link AsyncHttpClient} use for handling asynchronous response. If no {@link ThreadFactory} has been explicitly
161161 * provided, this method will return {@code null}
162162 */
163- @ Nullable ThreadFactory getThreadFactory ();
163+ @ Nullable
164+ ThreadFactory getThreadFactory ();
164165
165166 /**
166167 * An instance of {@link ProxyServer} used by an {@link AsyncHttpClient}
@@ -174,14 +175,16 @@ public interface AsyncHttpClientConfig {
174175 *
175176 * @return an instance of {@link SslContext} used for SSL connection.
176177 */
177- @ Nullable SslContext getSslContext ();
178+ @ Nullable
179+ SslContext getSslContext ();
178180
179181 /**
180182 * Return the current {@link Realm}
181183 *
182184 * @return the current {@link Realm}
183185 */
184- @ Nullable Realm getRealm ();
186+ @ Nullable
187+ Realm getRealm ();
185188
186189 /**
187190 * Return the list of {@link RequestFilter}
@@ -260,12 +263,14 @@ public interface AsyncHttpClientConfig {
260263 /**
261264 * @return the array of enabled protocols
262265 */
263- @ Nullable String [] getEnabledProtocols ();
266+ @ Nullable
267+ String [] getEnabledProtocols ();
264268
265269 /**
266270 * @return the array of enabled cipher suites
267271 */
268- @ Nullable String [] getEnabledCipherSuites ();
272+ @ Nullable
273+ String [] getEnabledCipherSuites ();
269274
270275 /**
271276 * @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 {
294299
295300 int getHandshakeTimeout ();
296301
297- @ Nullable SslEngineFactory getSslEngineFactory ();
302+ @ Nullable
303+ SslEngineFactory getSslEngineFactory ();
298304
299305 int getChunkedFileChunkSize ();
300306
@@ -310,23 +316,29 @@ public interface AsyncHttpClientConfig {
310316
311317 Map <ChannelOption <Object >, Object > getChannelOptions ();
312318
313- @ Nullable EventLoopGroup getEventLoopGroup ();
319+ @ Nullable
320+ EventLoopGroup getEventLoopGroup ();
314321
315322 boolean isUseNativeTransport ();
316323
317324 boolean isUseOnlyEpollNativeTransport ();
318325
319- @ Nullable Consumer <Channel > getHttpAdditionalChannelInitializer ();
326+ @ Nullable
327+ Consumer <Channel > getHttpAdditionalChannelInitializer ();
320328
321- @ Nullable Consumer <Channel > getWsAdditionalChannelInitializer ();
329+ @ Nullable
330+ Consumer <Channel > getWsAdditionalChannelInitializer ();
322331
323332 ResponseBodyPartFactory getResponseBodyPartFactory ();
324333
325- @ Nullable ChannelPool getChannelPool ();
334+ @ Nullable
335+ ChannelPool getChannelPool ();
326336
327- @ Nullable ConnectionSemaphoreFactory getConnectionSemaphoreFactory ();
337+ @ Nullable
338+ ConnectionSemaphoreFactory getConnectionSemaphoreFactory ();
328339
329- @ Nullable Timer getNettyTimer ();
340+ @ Nullable
341+ Timer getNettyTimer ();
330342
331343 /**
332344 * @return the duration between tick of {@link HashedWheelTimer}
@@ -358,7 +370,8 @@ public interface AsyncHttpClientConfig {
358370
359371 int getSoRcvBuf ();
360372
361- @ Nullable ByteBufAllocator getAllocator ();
373+ @ Nullable
374+ ByteBufAllocator getAllocator ();
362375
363376 int getIoThreadsCount ();
364377
0 commit comments