Skip to content

Commit a1203fb

Browse files
authored
upgrade feat (#9875)
* 适配最新版 * upgrade smart-socket * upgrade smart-socket * upgrade smart-socket * upgrade smart-socket * upgrade feat * upgrade feat * upgrade feat
1 parent c7c036e commit a1203fb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

frameworks/Java/smart-socket/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<dependency>
2121
<groupId>tech.smartboot.feat</groupId>
2222
<artifactId>feat-cloud-starter</artifactId>
23-
<version>0.8.3-SNAPSHOT</version>
23+
<version>0.9.0</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>io.github.smartboot.socket</groupId>
2727
<artifactId>aio-pro</artifactId>
28-
<version>1.5.57</version>
28+
<version>1.5.62-SNAPSHOT</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>tech.smartboot.servlet</groupId>

frameworks/Java/smart-socket/src/main/java/org/smartboot/http/MultipleQueriesHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public MultipleQueriesHandler(DataSource dataSource) {
2727
}
2828

2929
@Override
30-
public void handle(HttpRequest httpRequest, CompletableFuture<Object> completableFuture) throws IOException {
30+
public void handle(HttpRequest httpRequest, CompletableFuture<Void> completableFuture) throws IOException {
3131
HttpResponse response = httpRequest.getResponse();
3232
Thread.startVirtualThread(() -> {
3333
try {

frameworks/Java/smart-socket/src/main/java/org/smartboot/http/SingleQueryHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public SingleQueryHandler(DataSource dataSource) {
2626
}
2727

2828
@Override
29-
public void handle(HttpRequest httpRequest, CompletableFuture<Object> completableFuture) throws IOException {
29+
public void handle(HttpRequest httpRequest, CompletableFuture<Void> completableFuture) throws IOException {
3030
HttpResponse response = httpRequest.getResponse();
3131
Thread.startVirtualThread(() -> {
3232
try {

0 commit comments

Comments
 (0)