Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Key Points

References

...

Table of Contents

Key Points


References

Reference_description_with_linked_URLs_______________________Notes_________________________________________________________________




https://medium.com/javascript-scene/the-forgotten-history-of-oop-88d71b9b2d9f

medium.com-The Forgotten History of OOP.pdf

Roots of OOP - Alan Kay Smalltalk

keys encapsulation, abstraction, delegation, dynamic associations, collaboration via messages, events, listeners, promises

benefits - decoupling to reduce complexity, avoiding shared state, adaptability to change ( CIC policy nbr )

http://wiki.c2.com/?PortlandPatternRepository

http://c2.com/ppr/

Ward Cunningham - Portland Pattern Repository

Gang of Four Design Patterns
https://www.tutorialspoint.com/design_pattern/factory_pattern.htmG4 Pattern summary tutorials point
https://springframework.guru/gang-of-four-design-patterns/G4 Pattern summary Spring - 1 page



JEE Enterprise Services Patterns

Enterprise Integration Patterns
https://microservices.io/patterns/index.htmlMicroservices Design Patterns
https://microservices.io/patterns/monolithic.htmlMonolithic Architecture pattern
https://microservices.io/patterns/microservices.htmlMicroservices Architecture pattern

Microservices orchestration vs choreography
https://sites.google.com/a/mammatustech.com/
mammatusmain/reactive-microservices
Reactive microservices pattern


...

Microservices Application Pattern



Please see the example applications developed by Chris Richardson. These examples on Github illustrate various aspects of the microservice architecture.


Resulting Context

Benefits

...

  • The coordinator is coupled with the services.
  • If the coordinator goes down, it impacts the entire system.

Reactive Microservices based on event listeners

https://sites.google.com/a/mammatustech.com/mammatusmain/reactive-microservices

Benefits of Real OOP using Smalltalk before other languages improved

medium.com-The Forgotten History of OOP.pdf

https://medium.com/javascript-scene/the-forgotten-history-of-oop-88d71b9b2d9f

...


RDD - Responsibility Driven Design - Wirfs-Brock


Why RDD?

more flexible than reactive services design

doesn't force everything to an API service model - just what should be an API vs a service vs a library vs a function

more natural way to find events produced and consumed by starting with business or client use cases

provides an easier way for business users to drive requirements specifications using natural language ( vs powerpoint logic )



Reactive Microservices based on event listeners

https://sites.google.com/a/mammatustech.com/mammatusmain/reactive-microservices

event maps, event storming in the context of microservices

effective really for software engineers but not so much for others


Benefits of Real OOP using Smalltalk before other languages improved

medium.com-The Forgotten History of OOP.pdf

https://medium.com/javascript-scene/the-forgotten-history-of-oop-88d71b9b2d9f

Wow ! really well done on understanding the value of “intelligent objects”. The Smalltalk features and benefits called out are perfect. I had been developing in other languages for over a decade before picking up Smalltalk ( VisualAge Smalltalk ). Once you have the power, flexibility, protection it was hard to go back to other languages. The other languages are evolving ( as you nicely demonstrate ) to pick up those features. Building in Smalltalk, I could create components that could think for themselves. You could delegate responsibilities to them and they could learn new behaviors. Later I tried the approach with Groovy but it was less elegant.

...

P2P Escrow Transaction Pattern

goals

  1. 2 parties complete an atomic swap of asset 1 for asset 2 without risk
  2. contract config defines terms of the swap
  3. if swap can't meet completion criteria, swap transaction is reversed for all parties returning initial states for each
  4. optionally, a 3rd party notary service may need to approve the transaction
  5. optionally, a 3rd party observer service may record the transaction
  6. optionally, the 2 parties may be on different networks

...

specific validators only for that transaction type and parties are active


  1. define multi-step transaction typescreate transaction instance using the shared transaction manager with workflow from the contract config for that transaction party contract with roles where config defines terms of the swap
  2. each party is identified and claims a role ( eg buyer, seller etc )
  3. define multi-step transaction types
  4. create transaction instance using the shared transaction manager with workflow from the contract config for that transaction type
  5. each transaction has a unique ID
  6. set the parties who validate the transaction on each ledger
  7. contract takes control over both assets from each party using locks and confirms locks ( if funds or asset limited, policy may allow partial transactions )signatures and consents
    1. after each step, the contract instance is updated for both parties and confirmed
      1. obligation set for each asset in the contract locking a portion of the assets for a time period
      2. after lock done, the lock status for all assets in the contract is shared
      3. if all assets in the contract locked, next step executes ( normally the trade )
      4. funds transferred to new party,  assets transferred to new party
      5. after delivery completed, obligations removed
    2. after each step, the contract instance is updated for both parties and confirmed
    3. signatures and consents required by all parties for each step
    4. state changes are validated  as complete on each ledger for the current step before moving to next step - 100% endorsement of each update by relevant parties
    5. if completion criteria for a step not fulfilled by X time, the transaction is cancelled and all parties are restored to initial states
    6. completion messages recorded and events published on success or failure of the transaction


    context

    assume 2 different orgs on 2 different blockchains on 2 different platforms want to execute a sale using an order (any type of asset )

    a blockchain with 2 parties as nodes each running a ledger copy and a contractblockchains implement

    assume direct payment ( no margin loan ) on purchase transaction

    blockchains implement escrow transaction interface services in a smart contract

    ...

    step 3 - if both reservations are not executed as transactions within an agreed time limit, each party is notified to manage the purchase based on agreed policy

    step 4 - when both reservations have been executed by each party, all parties are notified of the completion of the escrow transaction

    step 5 - any dependent actors are notified of the completion of the purchase which may trigger additional transactions ( eg start an automatic purchase warranty etc ), each party is notified to manage the purchase based on agreed policy

    step 4 - when both reservations have been executed by each party, all parties are notified of the completion of the escrow transaction

    step 5 - any dependent actors are notified of the completion of the purchase which may trigger additional transactions ( eg start an automatic purchase warranty etc )



    Hashed Timelock Contract  |  Hashed Timelock Agreement


    https://www.investopedia.com/terms/h/hashed-timelock-contract.asp

    https://academy.binance.com/en/glossary/hashed-timelock-contract

    https://docs.lightning.engineering/the-lightning-network/multihop-payments/hash-time-lock-contract-htlc


    https://medium.com/liquality/hash-time-locked-contracts-htlcs-explained-e88aa99cc824


    Refund scenario for HTLC

     leverage HTLCs in Atomic Swaps, but also lead industry-wide efforts to standardize their implementation across different applications and blockchains.

    Image Added



    Bitcoin UXTO model

    https://river.com/learn/bitcoins-utxo-model/

    • Bitcoin does not have accounts with balances. Instead, individual coins are owned by Bitcoin users.
    • An Unspent Transaction Output (UTXO) is a discrete piece of bitcoin. UTXOs are used as the inputs of every Bitcoin transaction.
    • The UTXO model makes Bitcoin more auditable, transparent, and efficient than traditional financial systems, which rely on accounts, balances, and third parties.


    Alice sends Bob 1 BTC and sends herself a change output.Image Added


    Potential Value Opportunities

    ...