* Gets the definition of an user-defined type. * * If a callback is provided, the callback is invoked when the metadata retrieval completes. * Otherwise, it returns a Promise . * * * When trying to retrieve the same UDT definition concurren
(keyspaceName, name, callback)
| 466 | * @param {Function} [callback] The callback to invoke when retrieval completes. |
| 467 | */ |
| 468 | getUdt(keyspaceName, name, callback) { |
| 469 | return promiseUtils.optionalCallback(this._getUdt(keyspaceName, name), callback); |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * @param {String} keyspaceName |