New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vertx/sql-client

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vertx/sql-client - npm Package Compare versions

Comparing version 4.2.1 to 4.2.2

56

options.d.ts

@@ -49,2 +49,26 @@ /*

/**
* Set the number of event-loop the pool use.
*
* <ul>
* <li>when the size is <code>0</code>, the client pool will use the current event-loop</li>
* <li>otherwise the client will create and use its own event loop</li>
* </ul>
*
* The default size is <code>0</code>.
*/
getEventLoopSize(): number;
/**
* Set the number of event-loop the pool use.
*
* <ul>
* <li>when the size is <code>0</code>, the client pool will use the current event-loop</li>
* <li>otherwise the client will create and use its own event loop</li>
* </ul>
*
* The default size is <code>0</code>.
*/
setEventLoopSize(eventLoopSize: number): PoolOptions;
/**
* Establish an idle timeout for pooled connections.

@@ -92,2 +116,12 @@ */

/**
* Set the pool name, used when the pool shared, otherwise ignored.
*/
getName(): string;
/**
* Set the pool name, used when the pool shared, otherwise ignored.
*/
setName(name: string): PoolOptions;
/**
* Set the connection pool cleaner period in milli seconds, a non positive value disables expiration checks and connections

@@ -104,3 +138,19 @@ * will remain in the pool until they are closed.

/**
* Set to <code>true</code> to share the pool.
*
* <p> There can be multiple shared pools distinguished by <a href="../../dataobjects.html#PoolOptions">PoolOptions</a>, when no specific
* name is set, the <a href="../../dataobjects.html#PoolOptions">PoolOptions</a> is used.
*/
isShared(): boolean;
/**
* Set to <code>true</code> to share the pool.
*
* <p> There can be multiple shared pools distinguished by <a href="../../dataobjects.html#PoolOptions">PoolOptions</a>, when no specific
* name is set, the <a href="../../dataobjects.html#PoolOptions">PoolOptions</a> is used.
*/
setShared(shared: boolean): PoolOptions;
toJson(): { [key: string]: any };

@@ -111,3 +161,3 @@ }

* Options for preparing a statement.
*
* <p>
* Currently empty, custom options might be used by implementations to customize specific behavior.

@@ -121,2 +171,4 @@ */

toJson(): { [key: string]: any };
}

@@ -418,2 +470,4 @@

isUsingDomainSocket(): boolean;
getWriteIdleTimeout(): number;

@@ -420,0 +474,0 @@

6

package.json
{
"name" : "@vertx/sql-client",
"description" : "Generated Eclipse Vert.x bindings for 'vertx-sql-client'",
"version" : "4.2.1",
"version" : "4.2.2",
"license" : "Apache-2.0",

@@ -10,6 +10,6 @@ "public" : true,

"artifactId" : "vertx-sql-client",
"version" : "4.2.1"
"version" : "4.2.2"
},
"dependencies" : {
"@vertx/core" : "4.2.1"
"@vertx/core" : "4.2.2"
},

@@ -16,0 +16,0 @@ "main" : "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc