Skip to content

Commit

Permalink
Merge b71d70d into 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg committed Jan 2, 2025
2 parents d208ac2 + b71d70d commit 0ebf6c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2023 VMware, Inc. or its affiliates, All Rights Reserved.
* Copyright (c) 2018-2025 VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -232,7 +232,7 @@ default void dispose() {
* {@link ConnectionProvider} implementations may decide to provide more specific implementation.
*
* @return a Mono representing the completion of the ConnectionProvider disposal.
**/
*/
default Mono<Void> disposeLater() {
//noop default
return Mono.empty();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2011-2023 VMware, Inc. or its affiliates, All Rights Reserved.
* Copyright (c) 2011-2025 VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -203,7 +203,7 @@ default void dispose() {
* The quiet period will be {@code 2s} and the timeout will be {@code 15s}
*
* @return a Mono representing the completion of the LoopResources disposal.
**/
*/
default Mono<Void> disposeLater() {
return disposeLater(Duration.ofSeconds(DEFAULT_SHUTDOWN_QUIET_PERIOD),
Duration.ofSeconds(DEFAULT_SHUTDOWN_TIMEOUT));
Expand All @@ -220,7 +220,7 @@ default Mono<Void> disposeLater() {
* LoopResources regardless if a task was submitted during the quiet period
* @return a Mono representing the completion of the LoopResources disposal.
* @since 0.9.3
**/
*/
default Mono<Void> disposeLater(Duration quietPeriod, Duration timeout) {
//noop default
return Mono.empty();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2023 VMware, Inc. or its affiliates, All Rights Reserved.
* Copyright (c) 2023-2025 VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -28,7 +28,7 @@
*
* @author Kun.Long
* @see HttpSnoopServer
**/
*/
public class HttpSnoopClient {

static final boolean SECURE = System.getProperty("secure") != null;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2023 VMware, Inc. or its affiliates, All Rights Reserved.
* Copyright (c) 2023-2025 VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -36,7 +36,7 @@
* An HTTP server that receives any request and tells the client the details of the request in a formatted string.
*
* @author Kun.Long
**/
*/
public class HttpSnoopServer {

static final boolean SECURE = System.getProperty("secure") != null;
Expand Down

0 comments on commit 0ebf6c8

Please sign in to comment.