com.mysql.cj.protocol.AsyncSocketFactory Java Examples
The following examples show how to use
com.mysql.cj.protocol.AsyncSocketFactory.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XAsyncSocketConnection.java From lams with GNU General Public License v2.0 | 6 votes |
@Override public void connect(String hostName, int portNumber, PropertySet propSet, ExceptionInterceptor excInterceptor, Log log, int loginTimeout) { this.port = portNumber; this.host = hostName; this.propertySet = propSet; this.socketFactory = new AsyncSocketFactory(); // TODO reuse PNAME_socketFactory try { this.channel = this.socketFactory.connect(hostName, portNumber, propSet.exposeAsProperties(), loginTimeout); } catch (CJCommunicationsException e) { throw e; } catch (IOException | RuntimeException ex) { throw new CJCommunicationsException(ex); } }
Example #2
Source File: XAsyncSocketConnection.java From FoxTelem with GNU General Public License v3.0 | 6 votes |
@Override public void connect(String hostName, int portNumber, PropertySet propSet, ExceptionInterceptor excInterceptor, Log log, int loginTimeout) { this.port = portNumber; this.host = hostName; this.propertySet = propSet; this.socketFactory = new AsyncSocketFactory(); // TODO reuse PNAME_socketFactory try { this.channel = this.socketFactory.connect(hostName, portNumber, propSet, loginTimeout); } catch (CJCommunicationsException e) { throw e; } catch (IOException | RuntimeException ex) { throw new CJCommunicationsException(ex); } }
Example #3
Source File: MySQLJDBCReflections.java From quarkus with Apache License 2.0 | 5 votes |
@BuildStep void registerSocketFactoryForReflection(BuildProducer<ReflectiveClassBuildItem> reflectiveClass) { reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, NamedPipeSocketFactory.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, StandardSocketFactory.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, SocksProxySocketFactory.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, AsyncSocketFactory.class.getName())); }