(String uri)
| 34 | private IO() {} |
| 35 | |
| 36 | public static Socket socket(String uri) throws URISyntaxException { |
| 37 | return socket(uri, null); |
| 38 | } |
| 39 | |
| 40 | public static Socket socket(String uri, Options opts) throws URISyntaxException { |
| 41 | return socket(new URI(uri), opts); |