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


TypeScript client.StorageClient類代碼示例

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


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

示例1: init

 public init(objectName: string) {
   this.storageClient.getObject(this.instance.name, 'displays', objectName).then(response => {
     response.text().then(text => {
       this.text = text;
       this.changeDetector.detectChanges();
     });
   });
   return Promise.resolve();
 }
開發者ID:tomvanbraeckel,項目名稱:yamcs,代碼行數:9,代碼來源:TextViewer.ts

示例2: init

 public init(objectName: string) {
   const bucketInstance = this.configService.getDisplayBucketInstance();
   this.storageClient.getObject(bucketInstance, 'displays', objectName).then(response => {
     response.text().then(text => {
       this.text = text;
       this.changeDetector.detectChanges();
     });
   });
   return Promise.resolve();
 }
開發者ID:m-sc,項目名稱:yamcs,代碼行數:10,代碼來源:TextViewer.ts

示例3: init

  public init(objectName: string) {
    this.storageClient.getObject(this.instance.name, 'displays', objectName).then(response => {
      response.text().then(text => {
        this.scriptContainer.nativeElement.innerHTML = text;
        this.editor = ace.edit(this.scriptContainer.nativeElement);
        this.editor.setReadOnly(true);
        this.editor.getSession().setMode('ace/mode/javascript');
        this.changeDetector.detectChanges();
      });
    });

    this.applyTheme(this.preferenceStore.isDarkMode());
    this.darkModeSubscription = this.preferenceStore.darkMode$.subscribe(darkMode => {
      this.applyTheme(darkMode);
    });

    return Promise.resolve();
  }
開發者ID:tomvanbraeckel,項目名稱:yamcs,代碼行數:18,代碼來源:ScriptViewer.ts

示例4: getObject

 async getObject(bucketName: string, objectName: string) {
   const bucketInstance = this.configService.getDisplayBucketInstance();
   return await this.storageClient.getObject(bucketInstance, bucketName, objectName);
 }
開發者ID:m-sc,項目名稱:yamcs,代碼行數:4,代碼來源:MyDisplayCommunicator.ts

示例5: init

 public init(objectName: string) {
   this.url = this.storageClient.getObjectURL(this.instance.name, 'displays', objectName);
   return Promise.resolve();
 }
開發者ID:tomvanbraeckel,項目名稱:yamcs,代碼行數:4,代碼來源:ImageViewer.ts

示例6: getObject

 async getObject(bucketName: string, objectName: string) {
   return await this.storageClient.getObject(this.instance.name, bucketName, objectName);
 }
開發者ID:tomvanbraeckel,項目名稱:yamcs,代碼行數:3,代碼來源:MyDisplayCommunicator.ts

示例7: getObjectURL

 getObjectURL(bucketName: string, objectName: string) {
   return this.storageClient.getObjectURL(this.instance.name, bucketName, objectName);
 }
開發者ID:tomvanbraeckel,項目名稱:yamcs,代碼行數:3,代碼來源:MyDisplayCommunicator.ts

示例8: init

 public init(objectName: string) {
   const bucketInstance = this.configService.getDisplayBucketInstance();
   this.url = this.storageClient.getObjectURL(bucketInstance, 'displays', objectName);
   return Promise.resolve();
 }
開發者ID:m-sc,項目名稱:yamcs,代碼行數:5,代碼來源:ImageViewer.ts


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