소스 검색

minor adjustments

enzo 3 주 전
부모
커밋
bb38594078
3개의 변경된 파일24개의 추가작업 그리고 3개의 파일을 삭제
  1. 18 0
      doc/class.plantuml
  2. 6 1
      doc/explanation.txt
  3. 0 2
      src/interface/transport.interface.ts

+ 18 - 0
doc/class.plantuml

@@ -0,0 +1,18 @@
+@startuml
+
+class Library {
+    +name: String
+    +location: String
+    +addBook(book: Book): void
+    +removeBook(book: Book): void
+}
+
+class Book {
+    +title: String
+    +author: String
+    +isbn: String
+}
+
+Library o-- Book : "0..*"
+
+@enduml

+ 6 - 1
doc/explanation.txt

@@ -77,4 +77,9 @@ Discussion points during meeting: Keep track and monitor the performance and it'
 overloading the system. It's not just getting the behavior right, but also making sure unused var and instances are also properly organized and deleted when no longer used to
 prevent memory leak.
 And there's going to be an upcoming meeting to present my findings and progress:
-Target for the day:  Get the HTTP Services ready. at least the channel version, so that I get right on with the testing and proceed with Emulating request Response adapter.
+Target for the day:  Get the HTTP Services ready. at least the channel version, so that I get right on with the testing and proceed with Emulating request Response adapter.
+
+As of 16/12/2024: (Monday)
+-SO tomorrow I have to present something concrete. Will first finish up the UML diagram, and then proceed to hash out whatever errors there is for HTTP servcies.
+-If I manage to hash out all the remaining problems. Then proceed to do request response. Test with same app first, before developing for web UI version. it use fetch
+instead of axios, so there's going to be some tweaking. 

+ 0 - 2
src/interface/transport.interface.ts

@@ -40,8 +40,6 @@ export interface MessageTransmitter extends MessageTransmissionBase {
 }
 
 export interface MessageRequestResponse extends MessageTransmissionBase {
-    incomingMessageBus: Subject<any>
-    outgoingMessageBus: Subject<any>
     transmitterInstance: MessageTransmissionTransmitter
     receiverInstance: MessageTransmissionReceiver