* Gets the keyspace metadata information and updates the internal state of the driver. * * If a callback is provided, the callback is invoked when the keyspaces metadata refresh completes. * Otherwise, it returns a Promise . * * @param {String} na
(name, callback)
| 210 | * @param {Function} [callback] Optional callback. |
| 211 | */ |
| 212 | refreshKeyspace(name, callback) { |
| 213 | return promiseUtils.optionalCallback(this._refreshKeyspace(name), callback); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * @param {String} name |
nothing calls this directly
no test coverage detected