소스 검색

minor adjusments

Enzo 1 년 전
부모
커밋
dc8db89f88
1개의 변경된 파일5개의 추가작업 그리고 9개의 파일을 삭제
  1. 5 9
      services/synchronization.service.ts

+ 5 - 9
services/synchronization.service.ts

@@ -33,16 +33,12 @@ export class MessageSyncrhonizationService implements MessageSynchronisationServ
         let msg : Subject<BaseMessage> = new Subject()
         obsTrigger.subscribe({
             next: obs => {
-                console.log(`${obsTrigger} has trigged synchronization`)
-                this.dataConversion().subscribe({
-                    next: e => console.log(e)
+                let missingMsg = this.dataConversion()
+                missingMsg.subscribe({
+                    next: element => {
+                        msg.next(element)
+                    }
                 })
-                // let missingMsg = this.dataConversion()
-                // missingMsg.subscribe({
-                //     next: element => {
-                //         msg.next(element)
-                //     }
-                // })
             }
         })
         // trigger by timer