Browse Source

minor adjustments

enzo 3 weeks ago
parent
commit
bb38594078
3 changed files with 24 additions and 3 deletions
  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