Sets a vertx instance to use to make the client. @param vertx vertx instance @return this builder
(final Vertx vertx)
| 119 | * @return this builder |
| 120 | */ |
| 121 | public Builder vertx(final Vertx vertx) { |
| 122 | this.vertx = checkNotNull(vertx, "Argument vertx must be not null"); |
| 123 | return this; |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Sets log level. |
no outgoing calls