From: Kai Moritz Date: Sat, 22 Jun 2024 17:05:45 +0000 (+0200) Subject: query: 2.1.0 - Refined input JSON (adapted to general format for stats) X-Git-Tag: query-2.1.0 X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=d835b70fc4d49a50f42da9c21b3de1dbcd18cbaf;hp=d835b70fc4d49a50f42da9c21b3de1dbcd18cbaf;p=demos%2Fkafka%2Fwordcount query: 2.1.0 - Refined input JSON (adapted to general format for stats) * Adapted the app to the new type-mapping `stats` for the incomming keys. * Refined the class `Key`, that defines the JSON for the incomming key. ** Renamed attribute `user` to `channel`. ** Added attribute `type` of type `String`. * Refined the class `Entry`, that defines the JSON of an entry in the ranking, that is defined in the class `Ranking`. ** Renamed attribute `word` to `key`. * The `QueryStreamProcessor` filters the incomming messages by the field `type` of the `Key`: all messages are dropped, that are not of type `COUNTER`. ---