* @param {Object} options * @returns {Host}
(options)
| 530 | * @returns {Host} |
| 531 | */ |
| 532 | function newHostInstance(options) { |
| 533 | options = utils.extend({logEmitter: function () {}}, options); |
| 534 | return new Host('0.0.0.1:9042', 2, options, new Metadata(options, null)); |
| 535 | } |
| 536 | |
| 537 | /** |
| 538 | * @returns {Connection} |
no outgoing calls
no test coverage detected