BoneCP 异步获取连接
请问各位N人,BoneCP 异步获取连接是一个什么概率,和getConnection()区别是什么? 求详细描述......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
请问各位N人,BoneCP 异步获取连接是一个什么概率,和getConnection()区别是什么? 求详细描述......
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
... do something else in your application here ... 难道异步在此??
public Future<Connection> getAsyncConnection()
Obtain a connection asynchronously by queueing a request to obtain a connection in a separate thread. Use as follows:
Future<Connection> result = pool.getAsyncConnection();
... do something else in your application here ...
Connection connection = result.get(); // get the connection
Returns: A Future task returning a connection.
还真不知道作者做这个方法是处于什么考虑
打错别字了,概率---->概念