Intro to Temporal with Go SDK

Поділитися
Вставка
  • Опубліковано 6 жов 2024
  • As part of our Series B celebration week, we hosted a series of introductory sessions for everyone new to Temporal. If you are a Golang developer wondering what all the buzz is about, start here!
    Docs: temporal.io/go
    Slides: docs.google.co...

КОМЕНТАРІ • 9

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

    If only there was a Python demo! The unofficial one needs some love too!

    • @Temporalio
      @Temporalio  Рік тому +1

      Here's a Python intro: ua-cam.com/video/jZgtiGgEK6A/v-deo.html and docs: docs.temporal.io/dev-guide/python

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

      @@Temporalio Thank You!

  • @barsvelioglu2276
    @barsvelioglu2276 Рік тому +1

    Very informative presentation. Thanks

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

    If there is an interface that both temporal server and client has not implemented yet, like for example listing workflow types by namespace, how do you suggest I should provide it?

  • @МихаилКуварзин-щ5й

    Great explanations, but so fast speaking...

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

    Don’t get it… select is select and defer is defer, why did they combine these two functionalities into one “selector” function

    • @loren-sr
      @loren-sr Рік тому

      `Selector` is meant to replace the normal `select` statements in workflow code. Temporal workflows support usual `defer` semantics and can be used like a normal Go function. They are not combined together.

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

      @@loren-sr 17:10 hm.. He said "AddFuture is kind of like defer statement" and that's why I thought they combined it.