Mercurial > hg > monetdb-java
comparison src/main/java/org/monetdb/mcl/net/MapiSocket.java @ 768:a80c21fe7bb2
Removed deprecated nl.cwi.monetdb.*.* classes and package.
Those classes were marked deprecated on 12 Nov 2020 from
release 3.0 (released on 17 Feb 2021) onwards. It includes:
nl.cwi.monetdb.client.JdbcClient.class
nl.cwi.monetdb.jdbc.MonetDriver.class
nl.cwi.monetdb.jdbc.types.INET.class
nl.cwi.monetdb.jdbc.types.URL.class
nl.cwi.monetdb.mcl.net.MapiSocket.class
These classes are now removed permanently.
Use the org.monetdb.* equivalents instead.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 06 Jul 2023 15:35:04 +0200 (22 months ago) |
parents | a39d3a45da56 |
children | 5bfe3357fb1c 9188263368cc |
comparison
equal
deleted
inserted
replaced
767:1547843b3a9b | 768:a80c21fe7bb2 |
---|---|
78 * interface is most sufficient. In particular the BufferedMCL* | 78 * interface is most sufficient. In particular the BufferedMCL* |
79 * implementations of those interfaces supply some extra functionality | 79 * implementations of those interfaces supply some extra functionality |
80 * geared towards the format of the data. | 80 * geared towards the format of the data. |
81 * | 81 * |
82 * @author Fabian Groffen | 82 * @author Fabian Groffen |
83 * @version 4.2 | 83 * @version 4.3 |
84 * @see org.monetdb.mcl.io.BufferedMCLReader | 84 * @see org.monetdb.mcl.io.BufferedMCLReader |
85 * @see org.monetdb.mcl.io.BufferedMCLWriter | 85 * @see org.monetdb.mcl.io.BufferedMCLWriter |
86 */ | 86 */ |
87 public class MapiSocket { /* cannot (yet) be final as nl.cwi.monetdb.mcl.net.MapiSocket extends this class */ | 87 public final class MapiSocket { |
88 /** The TCP Socket to mserver */ | 88 /** The TCP Socket to mserver */ |
89 private Socket con; | 89 private Socket con; |
90 /** The TCP Socket timeout in milliseconds. Default is 0 meaning the timeout is disabled (i.e., timeout of infinity) */ | 90 /** The TCP Socket timeout in milliseconds. Default is 0 meaning the timeout is disabled (i.e., timeout of infinity) */ |
91 private int soTimeout = 0; | 91 private int soTimeout = 0; |
92 /** Stream from the Socket for reading */ | 92 /** Stream from the Socket for reading */ |