Skip to content

Commit

Permalink
Move BlockedThreadChecker to internal API
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Jun 19, 2024
1 parent baea39e commit 7562717
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/core/impl/VertxImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import io.vertx.core.file.FileSystem;
import io.vertx.core.http.*;
import io.vertx.core.http.impl.*;
import io.vertx.core.impl.btc.BlockedThreadChecker;
import io.vertx.core.internal.threadchecker.BlockedThreadChecker;
import io.vertx.core.internal.CloseFuture;
import io.vertx.core.internal.ContextInternal;
import io.vertx.core.internal.VertxInternal;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/core/impl/VertxThread.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
package io.vertx.core.impl;

import io.netty.util.concurrent.FastThreadLocalThread;
import io.vertx.core.impl.btc.ThreadInfo;
import io.vertx.core.internal.threadchecker.ThreadInfo;
import io.vertx.core.internal.ContextInternal;

import java.util.concurrent.TimeUnit;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/core/impl/VertxWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import io.vertx.core.eventbus.EventBus;
import io.vertx.core.file.FileSystem;
import io.vertx.core.http.*;
import io.vertx.core.impl.btc.BlockedThreadChecker;
import io.vertx.core.internal.threadchecker.BlockedThreadChecker;
import io.vertx.core.internal.PromiseInternal;
import io.vertx.core.internal.CloseFuture;
import io.vertx.core.internal.ContextInternal;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/vertx/core/internal/VertxInternal.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import io.vertx.core.*;
import io.vertx.core.dns.impl.DnsAddressResolverProvider;
import io.vertx.core.impl.*;
import io.vertx.core.impl.btc.BlockedThreadChecker;
import io.vertx.core.internal.threadchecker.BlockedThreadChecker;
import io.vertx.core.net.NetServerOptions;
import io.vertx.core.net.impl.NetServerInternal;
import io.vertx.core.net.impl.ServerID;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/

package io.vertx.core.impl.btc;
package io.vertx.core.internal.threadchecker;

import io.vertx.core.Handler;
import io.vertx.core.VertxException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/

package io.vertx.core.impl.btc;
package io.vertx.core.internal.threadchecker;

/**
* A class containing status details about how long a particular thread has been blocked,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/
package io.vertx.core.impl.btc;
package io.vertx.core.internal.threadchecker;

import java.util.concurrent.TimeUnit;

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/vertx/core/BlockedThreadCheckerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
package io.vertx.core;

import io.vertx.core.internal.VertxInternal;
import io.vertx.core.impl.btc.BlockedThreadEvent;
import io.vertx.core.internal.threadchecker.BlockedThreadEvent;
import io.vertx.test.core.TestUtils;
import io.vertx.test.core.VertxTestBase;
import org.junit.Test;
Expand Down

0 comments on commit 7562717

Please sign in to comment.