首页 > 解决方案 > 不兼容的类型:单无法转换为 Completable

问题描述

我正在尝试RxJava2在 Vert.x 中使用 Verticle:

import io.reactivex.Completable;
import io.vertx.core.Promise;

public class MainVerticle extends io.vertx.reactivex.core.AbstractVerticle {


  @Override
  public Completable rxStart() {
    return vertx.createHttpServer().requestHandler(req -> {
      req.response()
        .putHeader("content-type", "text/plain")
        .end("Hello from Vert.x!");
    })
      .rxListen(8080);

  }
}

编译抱怨:

 error: incompatible types: Single<HttpServer> cannot be converted to Completable
      .rxListen(8080);
               ^
1 error

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.

我不知道,我应该调用哪种方法。

标签: javarx-java2vert.x

解决方案


Single<HttpServer> rxListen(int port,String host)

从问题中返回 Single not Completable 的实例尚不清楚您要做什么,但是如果您想在端口上侦听,则需要执行类似的操作

public class MyVerticle extends AbstractVerticle {

 private HttpServer server;

 public void start(Future<Void> startFuture) {
   server = vertx.createHttpServer().requestHandler(req -> {
     req.response()
       .putHeader("content-type", "text/plain")
       .end("Hello from Vert.x!");
     });

   // Now bind the server:
   server.listen(8080, res -> {
     if (res.succeeded()) {
       startFuture.complete();
     } else {
       startFuture.fail(res.cause());
     }
   });
 }
}

如果你想使用 Completable 你需要订阅服务器并调用方法rxClose

 Completable single = server.rxClose();

    // Subscribe to bind the server
    single.
      subscribe(
        () -> {
          // Server is closed
        },
        failure -> {
          // Server closed but encoutered issue
        }
      );

推荐阅读