當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript plywood.basicExecutorFactory函數代碼示例

本文整理匯總了TypeScript中plywood.basicExecutorFactory函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript basicExecutorFactory函數的具體用法?TypeScript basicExecutorFactory怎麽用?TypeScript basicExecutorFactory使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了basicExecutorFactory函數的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: basicExecutorFactory

 return AppSettingsMock.wikiOnly().attachExecutors(() => {
   return basicExecutorFactory({
     datasets: {
       main: Dataset.fromJS(SMALL_WIKI_DATA)
     }
   });
 });
開發者ID:WuQic,項目名稱:pivot,代碼行數:7,代碼來源:app-settings.mock.ts

示例2: externalFactory

        return externalFactory(dataSource, druidRequester, timeout, introspectionStrategy).then((external) => {
          var executor = basicExecutorFactory({
            datasets: { main: external }
          });

          return dataSource.setAttributes(external.attributes).attachExecutor(executor);
        }).then(DataSource.updateMaxTime);
開發者ID:coconutpalm,項目名稱:pivot,代碼行數:7,代碼來源:executor.ts

示例3: basicExecutorFactory

          .then((rawData) => {
            var dataset = Dataset.fromJS(rawData).hide();

            if (dataSource.subsetFilter) {
              dataset = dataset.filter(dataSource.subsetFilter.getFn(), {});
            }

            var executor = basicExecutorFactory({
              datasets: { main: dataset }
            });

            return dataSource.addAttributes(dataset.attributes).attachExecutor(executor);
          });
開發者ID:07033320a,項目名稱:pivot,代碼行數:13,代碼來源:data-source-loader.ts

示例4: basicExecutorFactory

    this.appSettings = newSettings.attachExecutors((dataCube) => {
      if (dataCube.clusterName === 'native') {
        var fileManager = this.getFileManagerFor(dataCube.source);
        if (fileManager) {
          var dataset = fileManager.dataset;
          if (!dataset) return null;
          return basicExecutorFactory({
            datasets: { main: dataset }
          });
        }

      } else {
        var clusterManager = this.getClusterManagerFor(dataCube.clusterName);
        if (clusterManager) {
          var external = clusterManager.getExternalByName(dataCube.name);
          if (!external) return null;
          return basicExecutorFactory({
            datasets: { main: external }
          });
        }

      }
      return null;
    });
開發者ID:djfwan,項目名稱:pivot,代碼行數:24,代碼來源:settings-manager.ts

示例5: basicExecutorFactory

 this.appSettings = newSettings.attachExecutors((dataSource) => {
   if (dataSource.engine === 'native') {
     return null; // ToDo: fix this.
   } else {
     for (var clusterManager of clusterManagers) {
       if (clusterManager.cluster.name === dataSource.engine) {
         var external = clusterManager.getExternalByName(dataSource.name);
         if (!external) return null;
         return basicExecutorFactory({
           datasets: { main: external }
         });
       }
     }
   }
   return null;
 });
開發者ID:boneill42,項目名稱:pivot,代碼行數:16,代碼來源:settings-manager.ts

示例6: basicExecutorFactory

 *
 *     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.
 */

import { $, Executor, Dataset, basicExecutorFactory } from 'plywood';
import { DataCube, DataCubeJS } from './data-cube';

var executor = basicExecutorFactory({
  datasets: {
    wiki: Dataset.fromJS([]),
    twitter: Dataset.fromJS([])
  }
});

export class DataCubeMock {
  public static get WIKI_JS(): DataCubeJS {
    return {
      name: 'wiki',
      title: 'Wiki',
      description: 'Wiki description',
      clusterName: 'druid',
      source: 'wiki',
      introspection: 'none',
      attributes: [
        { name: 'time', type: 'TIME' },
        { name: 'articleName', type: 'STRING' },
開發者ID:djfwan,項目名稱:pivot,代碼行數:32,代碼來源:data-cube.mock.ts


注:本文中的plywood.basicExecutorFactory函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。