Lesson 142 - Request/Reply vs Async Notification

Поділитися
Вставка
  • Опубліковано 26 вер 2024

КОМЕНТАРІ • 6

  • @_Afsus
    @_Afsus Рік тому

    The best explanation ever , a 5 years old child would understand

  • @onetwo-zr8po
    @onetwo-zr8po 5 місяців тому

    Thanks for your efforts, we'll done,
    I hope to introduce something about
    Security Architecture
    Streaming Architecture
    Systems Architecture
    Systems Engineering
    Strategic thinking and planning

  • @TheFtw360
    @TheFtw360 2 роки тому

    Great video. Quick question about Request/Reply APIs Vs HTTP APIs for everything "internal" (ie all microservices South of a gateway). What, if any, are the benefits of using one over the other for these sorts of Comms? Many thanks.

    • @markrichards5014
      @markrichards5014  2 роки тому +3

      1. Async for interservice gives you a "private API" over reusing existing restful endpoints; 2. Async for interservice comm doesn't pollute your existing restful api business requests with lots of internal ones; 3. It allows you do do processing while waiting for the response (like a future or promise).

  • @nilesh-gule
    @nilesh-gule 2 роки тому

    Thanks Mark for concise explaination of Sync and Async notification.