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


TypeScript rxjs.Subject類代碼示例

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


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

示例1: targetToInput

 return Object.keys(inputs || {}).reduce((obj: any, key: string) => {
     const input: Subject<any> = inputs[key];
     obj[key] = function targetToInput(args) {
         input.next(args);
     };
     return obj;
 }, {});
開發者ID:pvasek,項目名稱:mobx-app-model,代碼行數:7,代碼來源:model.ts

示例2: next

const createRxSocket = (connection) => {
  let messages = Observable.fromEvent(connection, 'message', (message) => JSON.parse(message));
  let messageObserver:any = {
    next(message){
      if(connection.readyState === 1){
        connection.send(JSON.stringify(message));        
      }
     }
  }
  connection.on('close', () => {
    connection.streams && connection.streams.forEach(s => s.unsubscribe());
  })
  return Subject.create(messages, messageObserver);
}
開發者ID:LongLiveCHIEF,項目名稱:aim,代碼行數:14,代碼來源:stock_server.ts

示例3: modelDriver

 const stream$ = modelDriver((subj: Subject<any>) => {
     subj.next(model.count);     
 });
開發者ID:pvasek,項目名稱:mobx-app-model,代碼行數:3,代碼來源:modelDriver.ts

示例4: publish

function publish(action: IAction) : void {
    subject.next(action);
}
開發者ID:darcy-buttrose,項目名稱:rx-ko-base,代碼行數:3,代碼來源:Intent.ts


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