Skip to content

Releases: null-vector/akka-reactivemongo-plugin

1.6.2

13 Jun 15:11
Compare
Choose a tag to compare

Durable Store will track the creation date and updated date.

1.6.0

20 Oct 02:50
Compare
Choose a tag to compare

Support for DurableStateStore

1.5.3

02 Sep 20:05
Compare
Choose a tag to compare

Filter Events by some Event's Attribute

From regular stream

val readJournal = ReactiveMongoJournalProvider(system).readJournalFor(Seq("Orders"))
readJournal
  .currentEventsByTags(Seq("TAG"), NoOffset, BSONDocument("events.p.customerId" -> customerId), None)
  .mapAsyc(envelope => someEventualWork(envelope))
  .run()

From non-termination stream

val readJournal = ReactiveMongoJournalProvider(system).readJournalFor(Seq("Orders"))
readJournal
  .eventsByTags(Seq("TAG"), NoOffset, BSONDocument("events.p.customerId" -> customerId), None, 5.seconds)
  .mapAsyc(envelope => someEventualWork(envelope) )
  .run()

1.5.2

21 Jul 03:24
Compare
Choose a tag to compare
v1.5.2

Important fix using indices in events by tag.

1.5.1

22 Jun 21:48
Compare
Choose a tag to compare
v1.5.1

Supporting #withTagger() of typed persistence.

1.5.0

31 May 21:18
Compare
Choose a tag to compare
v1.5.0

new event serializer

1.4.7

19 Mar 20:10
Compare
Choose a tag to compare
v1.4.7

Using hint for recovery

1.4.6

18 Mar 22:30
Compare
Choose a tag to compare
v1.4.6

driver connection

1.4.5

17 Mar 13:20
Compare
Choose a tag to compare

Enhance indices usage.

1.4.4

01 Feb 18:17
Compare
Choose a tag to compare
v1.4.4

Fix memory leak using non-termination persistence query.