Uses of Class
io.vertx.mutiny.ext.eventbus.bridge.tcp.TcpEventBusBridge

Packages that use TcpEventBusBridge
  • Uses of TcpEventBusBridge in io.vertx.mutiny.ext.eventbus.bridge.tcp

    Fields in io.vertx.mutiny.ext.eventbus.bridge.tcp with type parameters of type TcpEventBusBridge
    Modifier and Type
    Field
    Description
    TcpEventBusBridge.__TYPE_ARG
     
    Modifier and Type
    Method
    Description
    TcpEventBusBridge.closeAndForget()
    Close the current socket.
    TcpEventBusBridge.create(Vertx vertx)
     
    TcpEventBusBridge.create(Vertx vertx, io.vertx.ext.bridge.BridgeOptions options)
     
    TcpEventBusBridge.create(Vertx vertx, io.vertx.ext.bridge.BridgeOptions options, io.vertx.core.net.NetServerOptions netServerOptions)
     
    TcpEventBusBridge.create(Vertx vertx, io.vertx.ext.bridge.BridgeOptions options, io.vertx.core.net.NetServerOptions netServerOptions, Consumer<BridgeEvent> eventHandler)
     
    TcpEventBusBridge.listenAndAwait()
    Start listening on the port and host as configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    TcpEventBusBridge.listenAndAwait(int port)
    Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    TcpEventBusBridge.listenAndAwait(int port, String address)
    Start listening on the specified port and host, ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    TcpEventBusBridge.listenAndAwait(io.vertx.core.net.SocketAddress localAddress)
    Start listening on the specified local address, ignoring port and host configured in the NetServerOptions used when creating the server.
    TcpEventBusBridge.listenAndForget()
    Start listening on the port and host as configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    TcpEventBusBridge.listenAndForget(int port)
    Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    TcpEventBusBridge.listenAndForget(int port, String address)
    Start listening on the specified port and host, ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    TcpEventBusBridge.listenAndForget(io.vertx.core.net.SocketAddress localAddress)
    Start listening on the specified local address, ignoring port and host configured in the NetServerOptions used when creating the server.
    TcpEventBusBridge.newInstance(io.vertx.ext.eventbus.bridge.tcp.TcpEventBusBridge delegate)
    Creates a new instance of the TcpEventBusBridge.
    Methods in io.vertx.mutiny.ext.eventbus.bridge.tcp that return types with arguments of type TcpEventBusBridge
    Modifier and Type
    Method
    Description
    io.smallrye.mutiny.Uni<TcpEventBusBridge>
    TcpEventBusBridge.listen()
    Start listening on the port and host as configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    io.smallrye.mutiny.Uni<TcpEventBusBridge>
    TcpEventBusBridge.listen(int port)
    Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    io.smallrye.mutiny.Uni<TcpEventBusBridge>
    TcpEventBusBridge.listen(int port, String address)
    Start listening on the specified port and host, ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    io.smallrye.mutiny.Uni<TcpEventBusBridge>
    TcpEventBusBridge.listen(io.vertx.core.net.SocketAddress localAddress)
    Start listening on the specified local address, ignoring port and host configured in the NetServerOptions used when creating the server.