Skip to content

v1.3.1

Compare
Choose a tag to compare
@Gsantomaggio Gsantomaggio released this 04 Mar 08:24
· 111 commits to main since this release
c390b3f

Milestore

Version 1.3.1

The version introduces:

  • ReliableProducer

  • ReliableConsumer
    The new structs are built up of the standard producer and consumer; see the complete documentation here

  • Confirmation timeout The client will raise timeout error on the confirmation handler If it does not receive a confirmation within a timeout:

    stream.NewProducerOptions().SetConfirmationTimeOut(5*time.Second).
  • ClientProvidedName:

      stream.NewProducerOptions().
      SetConfirmationTimeOut(5*time.Second).
      SetClientProvidedName(fmt.Sprintf("producer-%d", I)),			

    The name is shown on the management UI

Here you can find a complete example with Reliable* part, timeout and ClientProvidedName

Enhancements

Full Changelog: v1.3.0...v1.3.1