(@Nullable String hostNameOrAddress, int port, @Nullable Object userState, @Nullable Connector connector)
| 316 | } |
| 317 | |
| 318 | public final @NotNull AsyncSocket newClientSocket(@Nullable String hostNameOrAddress, int port, |
| 319 | @Nullable Object userState, @Nullable Connector connector) { |
| 320 | return new TcpSocket(this, hostNameOrAddress, port, userState, connector); |
| 321 | } |
| 322 | |
| 323 | public @NotNull AsyncSocket newWebsocketClient(@NotNull String url, |
| 324 | @Nullable Object userState, @Nullable Connector connector) { |
no outgoing calls