pg_eventstore 1.13.2 → 1.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -3
- data/lib/pg_eventstore/event.rb +2 -0
- data/lib/pg_eventstore/queries/event_queries.rb +4 -3
- data/lib/pg_eventstore/queries/partition_queries.rb +71 -6
- data/lib/pg_eventstore/query_builders/events_filtering.rb +1 -5
- data/lib/pg_eventstore/query_builders/partitions_filtering.rb +26 -16
- data/lib/pg_eventstore/sql_builder.rb +30 -12
- data/lib/pg_eventstore/subscriptions/callback_handlers/events_processor_handlers.rb +8 -3
- data/lib/pg_eventstore/subscriptions/callback_handlers/subscription_runner_handlers.rb +9 -0
- data/lib/pg_eventstore/subscriptions/events_processor.rb +7 -3
- data/lib/pg_eventstore/subscriptions/queries/service_queries.rb +73 -0
- data/lib/pg_eventstore/subscriptions/queries/subscription_queries.rb +1 -0
- data/lib/pg_eventstore/subscriptions/subscription.rb +11 -1
- data/lib/pg_eventstore/subscriptions/subscription_feeder.rb +7 -1
- data/lib/pg_eventstore/subscriptions/subscription_position_evaluation.rb +195 -0
- data/lib/pg_eventstore/subscriptions/subscription_runner.rb +18 -2
- data/lib/pg_eventstore/subscriptions/subscription_runners_feeder.rb +1 -1
- data/lib/pg_eventstore/subscriptions/subscriptions_manager.rb +13 -1
- data/lib/pg_eventstore/subscriptions/synchronized_array.rb +41 -0
- data/lib/pg_eventstore/version.rb +1 -1
- data/lib/pg_eventstore/web/paginator/events_collection.rb +1 -1
- data/lib/pg_eventstore/web/paginator/stream_ids_collection.rb +2 -2
- data/rbs_collection.lock.yaml +9 -1
- data/rbs_collection.yaml +2 -0
- data/sig/manifest.yaml +3 -0
- data/sig/pg_eventstore/event.rbs +3 -1
- data/sig/pg_eventstore/queries/partition_queries.rbs +5 -1
- data/sig/pg_eventstore/query_builders/partitions_filtering.rbs +9 -5
- data/sig/pg_eventstore/sql_builder.rbs +8 -2
- data/sig/pg_eventstore/subscriptions/callback_handlers/events_processor_handlers.rbs +2 -1
- data/sig/pg_eventstore/subscriptions/callback_handlers/subscription_runner_handlers.rbs +3 -0
- data/sig/pg_eventstore/subscriptions/queries/service_queries.rbs +15 -0
- data/sig/pg_eventstore/subscriptions/subscription.rbs +2 -0
- data/sig/pg_eventstore/subscriptions/subscription_feeder.rbs +2 -0
- data/sig/pg_eventstore/subscriptions/subscription_position_evaluation.rbs +53 -0
- data/sig/pg_eventstore/subscriptions/subscription_runner.rbs +3 -2
- data/sig/pg_eventstore/subscriptions/subscriptions_manager.rbs +2 -0
- data/sig/pg_eventstore/subscriptions/synchronized_array.rbs +4 -0
- metadata +8 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pg_eventstore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.13.
|
|
4
|
+
version: 1.13.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Dzyzenko
|
|
@@ -167,6 +167,7 @@ files:
|
|
|
167
167
|
- lib/pg_eventstore/subscriptions/events_processor.rb
|
|
168
168
|
- lib/pg_eventstore/subscriptions/extensions/base_command_extension.rb
|
|
169
169
|
- lib/pg_eventstore/subscriptions/extensions/command_class_lookup_extension.rb
|
|
170
|
+
- lib/pg_eventstore/subscriptions/queries/service_queries.rb
|
|
170
171
|
- lib/pg_eventstore/subscriptions/queries/subscription_command_queries.rb
|
|
171
172
|
- lib/pg_eventstore/subscriptions/queries/subscription_queries.rb
|
|
172
173
|
- lib/pg_eventstore/subscriptions/queries/subscriptions_set_command_queries.rb
|
|
@@ -187,6 +188,7 @@ files:
|
|
|
187
188
|
- lib/pg_eventstore/subscriptions/subscription_feeder_commands/stop.rb
|
|
188
189
|
- lib/pg_eventstore/subscriptions/subscription_feeder_commands/stop_all.rb
|
|
189
190
|
- lib/pg_eventstore/subscriptions/subscription_handler_performance.rb
|
|
191
|
+
- lib/pg_eventstore/subscriptions/subscription_position_evaluation.rb
|
|
190
192
|
- lib/pg_eventstore/subscriptions/subscription_runner.rb
|
|
191
193
|
- lib/pg_eventstore/subscriptions/subscription_runner_commands.rb
|
|
192
194
|
- lib/pg_eventstore/subscriptions/subscription_runner_commands/base.rb
|
|
@@ -199,6 +201,7 @@ files:
|
|
|
199
201
|
- lib/pg_eventstore/subscriptions/subscriptions_manager.rb
|
|
200
202
|
- lib/pg_eventstore/subscriptions/subscriptions_set.rb
|
|
201
203
|
- lib/pg_eventstore/subscriptions/subscriptions_set_lifecycle.rb
|
|
204
|
+
- lib/pg_eventstore/subscriptions/synchronized_array.rb
|
|
202
205
|
- lib/pg_eventstore/tasks/setup.rake
|
|
203
206
|
- lib/pg_eventstore/utils.rb
|
|
204
207
|
- lib/pg_eventstore/version.rb
|
|
@@ -257,6 +260,7 @@ files:
|
|
|
257
260
|
- sig/interfaces/failed_subscription_notifier.rbs
|
|
258
261
|
- sig/interfaces/restart_terminator.rbs
|
|
259
262
|
- sig/interfaces/subscription_handler.rbs
|
|
263
|
+
- sig/manifest.yaml
|
|
260
264
|
- sig/pg/basic_type_registry.rbs
|
|
261
265
|
- sig/pg/connection.rbs
|
|
262
266
|
- sig/pg/constants.rbs
|
|
@@ -330,6 +334,7 @@ files:
|
|
|
330
334
|
- sig/pg_eventstore/subscriptions/events_processor.rbs
|
|
331
335
|
- sig/pg_eventstore/subscriptions/extensions/base_command_extension.rbs
|
|
332
336
|
- sig/pg_eventstore/subscriptions/extensions/command_class_lookup_extension.rbs
|
|
337
|
+
- sig/pg_eventstore/subscriptions/queries/service_queries.rbs
|
|
333
338
|
- sig/pg_eventstore/subscriptions/queries/subscription_command_queries.rbs
|
|
334
339
|
- sig/pg_eventstore/subscriptions/queries/subscription_queries.rbs
|
|
335
340
|
- sig/pg_eventstore/subscriptions/queries/subscriptions_set_command_queries.rbs
|
|
@@ -349,6 +354,7 @@ files:
|
|
|
349
354
|
- sig/pg_eventstore/subscriptions/subscription_feeder_commands/stop.rbs
|
|
350
355
|
- sig/pg_eventstore/subscriptions/subscription_feeder_commands/stop_all.rbs
|
|
351
356
|
- sig/pg_eventstore/subscriptions/subscription_handler_performance.rbs
|
|
357
|
+
- sig/pg_eventstore/subscriptions/subscription_position_evaluation.rbs
|
|
352
358
|
- sig/pg_eventstore/subscriptions/subscription_runner.rbs
|
|
353
359
|
- sig/pg_eventstore/subscriptions/subscription_runner_commands.rbs
|
|
354
360
|
- sig/pg_eventstore/subscriptions/subscription_runner_commands/base.rbs
|
|
@@ -361,6 +367,7 @@ files:
|
|
|
361
367
|
- sig/pg_eventstore/subscriptions/subscriptions_manager.rbs
|
|
362
368
|
- sig/pg_eventstore/subscriptions/subscriptions_set.rbs
|
|
363
369
|
- sig/pg_eventstore/subscriptions/subscriptions_set_lifecycle.rbs
|
|
370
|
+
- sig/pg_eventstore/subscriptions/synchronized_array.rbs
|
|
364
371
|
- sig/pg_eventstore/utils.rbs
|
|
365
372
|
- sig/pg_eventstore/version.rbs
|
|
366
373
|
- sig/pg_eventstore/web/application.rbs
|