/* * Copyright DataStax, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ 'use strict'; const util = require('util'); const DataCollection = require('./data-collection'); /** * Creates a new instance of TableMetadata * @classdesc Describes a table * @param {String} name Name of the Table * @augments {module:metadata~DataCollection} * @alias module:metadata~TableMetadata * @constructor */ function TableMetadata(name) { DataCollection.call(this, name); /** * Applies only to counter tables. * When set to true, replicates writes to all affected replicas regardless of the consistency level specified by * the client for a write request. For counter tables, this should always be set to true. * @type {Boolean} */ this.replicateOnWrite = true; /** * Returns the memtable flush period (in milliseconds) option for this table. * @type {Number} */ this.memtableFlushPeriod = 0; /** * Returns the index interval option for this table. *
* Note: this option is only available in Apache Cassandra 2.0. It is deprecated in Apache Cassandra 2.1 and
* above, and will therefore return null
for 2.1 nodes.
*