LLD 05-How Amazon & PhonePe Simplify Orders and Payments Using Builder Pattern | LLD

Поделиться
HTML-код
  • Опубликовано: 10 ноя 2024

Комментарии • 10

  • @devsinprogress
    @devsinprogress  Месяц назад +1

    If you understood the explanation, please give a like 👍 and comment "understood."
    Let's aim for 100 likes!

  • @bheerlamallikarjuna7095
    @bheerlamallikarjuna7095 16 дней назад

    Major Respect anna, finest content, can't thank you enough!!

  • @srinivasvasala4503
    @srinivasvasala4503 17 дней назад

    Understood Thanks for sharing bro

  • @gowthamsai987
    @gowthamsai987 Месяц назад +2

    I think you're the only one who posts some meaningful and worthy in the entire telugu community thank you for sharing your knowledge And I hope this boosts you a lot to yor journey

    • @devsinprogress
      @devsinprogress  Месяц назад

      Thank you! Please share our channel within your circle and help it reach the audience it deserves.

  • @k.verendrareddy3118
    @k.verendrareddy3118 Месяц назад

    Thank you for this content

  • @vasudevaraoalajangi6251
    @vasudevaraoalajangi6251 Месяц назад

    Understood bro

  • @vasudevaraoalajangi6251
    @vasudevaraoalajangi6251 Месяц назад

    Thank you

  • @sriharisinguru
    @sriharisinguru Месяц назад

    Hi @devsinprogress,
    Thanks for the video and clear explanation. I have a small question.
    Can we use Collections.unmodifiableList(list) inside a OrderBuilder calss instead of using List.copyOf() ? So that, maybe we can avoid Collections.unmodifiableList(list) in Order class's constructor?
    Is my understanding correct? or am I missing something here?

    • @devsinprogress
      @devsinprogress  Месяц назад +2

      Builder class is responsible for gradually constructing an object.
      The immutability guarantee must be applied to the final object, not during the construction process.
      So, immutability should be handed over to outer class.