-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathReactivePostgresKafkaEventProcessorBuilder.java
More file actions
571 lines (496 loc) · 27.6 KB
/
ReactivePostgresKafkaEventProcessorBuilder.java
File metadata and controls
571 lines (496 loc) · 27.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
package fr.maif.eventsourcing;
import fr.maif.eventsourcing.EventStore.ConcurrentReplayStrategy;
import fr.maif.eventsourcing.format.JacksonEventFormat;
import fr.maif.eventsourcing.format.JacksonSimpleFormat;
import fr.maif.reactor.eventsourcing.DefaultAggregateStore;
import fr.maif.reactor.eventsourcing.ReactorKafkaEventPublisher;
import fr.maif.jooq.PgAsyncPool;
import fr.maif.jooq.PgAsyncTransaction;
import io.vavr.Tuple0;
import io.vavr.collection.List;
import io.vavr.control.Option;
import reactor.kafka.sender.SenderOptions;
import java.util.function.Function;
public class ReactivePostgresKafkaEventProcessorBuilder {
public static class BuilderWithPool {
public final PgAsyncPool pgAsyncPool;
public BuilderWithPool(PgAsyncPool pgAsyncPool) {
this.pgAsyncPool = pgAsyncPool;
}
public BuilderWithTables withTables(TableNames tableNames) {
return new BuilderWithTables(pgAsyncPool, tableNames);
}
}
public static class BuilderWithTables {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public BuilderWithTables(PgAsyncPool pgAsyncPool, TableNames tableNames) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
}
public BuilderWithTx withExistingTransactionManager(TransactionManager<PgAsyncTransaction> transactionManager) {
return new BuilderWithTx(pgAsyncPool, tableNames, transactionManager);
}
public BuilderWithTx withTransactionManager() {
return new BuilderWithTx(pgAsyncPool, tableNames, new ReactiveTransactionManager(pgAsyncPool));
}
}
public static class BuilderWithTx<Tx extends PgAsyncTransaction> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public BuilderWithTx(PgAsyncPool pgAsyncPool, TableNames tableNames,
TransactionManager<PgAsyncTransaction> transactionManager) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
}
public <E extends Event> BuilderWithEventFormat<E> withEventFormater(JacksonEventFormat<?, E> eventFormat) {
return new BuilderWithEventFormat<>(pgAsyncPool, tableNames, transactionManager, eventFormat);
}
}
public static class BuilderWithEventFormat<E extends Event> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public final JacksonEventFormat<?, E> eventFormat;
public BuilderWithEventFormat(PgAsyncPool pgAsyncPool, TableNames tableNames,
TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
}
public <Meta> BuilderWithMetaFormat<E, Meta> withMetaFormater(JacksonSimpleFormat<Meta> metaFormat) {
return new BuilderWithMetaFormat<E, Meta>(pgAsyncPool, tableNames, transactionManager, eventFormat, metaFormat);
}
public BuilderWithMetaFormat<E, Tuple0> withNoMetaFormater() {
return new BuilderWithMetaFormat<E, Tuple0>(pgAsyncPool, tableNames, transactionManager, eventFormat, JacksonSimpleFormat.<Tuple0>empty());
}
}
public static class BuilderWithMetaFormat<E extends Event, Meta> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public final JacksonEventFormat<?, E> eventFormat;
public final JacksonSimpleFormat<Meta> metaFormat;
public BuilderWithMetaFormat(PgAsyncPool pgAsyncPool, TableNames tableNames,
TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat,
JacksonSimpleFormat<Meta> metaFormat) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
this.metaFormat = metaFormat;
}
public <Context> BuilderWithContextFormat<E, Meta, Context> withContextFormater(JacksonSimpleFormat<Context> contextFormat) {
return new BuilderWithContextFormat<E, Meta, Context>(pgAsyncPool, tableNames, transactionManager, eventFormat, metaFormat, contextFormat);
}
public BuilderWithContextFormat<E, Meta, Tuple0> withNoContextFormater() {
return new BuilderWithContextFormat<E, Meta, Tuple0>(pgAsyncPool, tableNames, transactionManager, eventFormat, metaFormat, JacksonSimpleFormat.<Tuple0>empty());
}
}
public static class BuilderWithContextFormat<E extends Event, Meta, Context> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public final JacksonEventFormat<?, E> eventFormat;
public final JacksonSimpleFormat<Meta> metaFormat;
public final JacksonSimpleFormat<Context> contextFormat;
public BuilderWithContextFormat(PgAsyncPool pgAsyncPool, TableNames tableNames,
TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat,
JacksonSimpleFormat<Meta> metaFormat, JacksonSimpleFormat<Context> contextFormat) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
this.metaFormat = metaFormat;
this.contextFormat = contextFormat;
}
public BuilderWithKafkaSettings<E, Meta, Context> withKafkaSettings(String topic, SenderOptions<String, EventEnvelope<E, Meta, Context>> producerSettings, Integer bufferSize) {
return new BuilderWithKafkaSettings<E, Meta, Context>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
topic,
producerSettings,
bufferSize,
null
);
}
public BuilderWithKafkaSettings<E, Meta, Context> withKafkaSettings(String topic, SenderOptions<String, EventEnvelope<E, Meta, Context>> producerSettings) {
return withKafkaSettings(topic, producerSettings, 1000);
}
}
public static class BuilderWithKafkaSettings<E extends Event, Meta, Context> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public final JacksonEventFormat<?, E> eventFormat;
public final JacksonSimpleFormat<Meta> metaFormat;
public final JacksonSimpleFormat<Context> contextFormat;
public final ConcurrentReplayStrategy concurrentReplayStrategy;
public final ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher;
public final ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore;
private BuilderWithKafkaSettings(PgAsyncPool pgAsyncPool, TableNames tableNames, TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat, JacksonSimpleFormat<Meta> metaFormat, JacksonSimpleFormat<Context> contextFormat, ConcurrentReplayStrategy concurrentReplayStrategy, ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher, ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
this.metaFormat = metaFormat;
this.contextFormat = contextFormat;
this.concurrentReplayStrategy = concurrentReplayStrategy;
this.eventPublisher = eventPublisher;
this.eventStore = eventStore;
}
BuilderWithKafkaSettings(PgAsyncPool pgAsyncPool, TableNames tableNames, TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat, JacksonSimpleFormat<Meta> metaFormat, JacksonSimpleFormat<Context> contextFormat, String topic, SenderOptions<String, EventEnvelope<E, Meta, Context>> producerSettings, Integer bufferSize, ConcurrentReplayStrategy concurrentReplayStrategy) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
this.metaFormat = metaFormat;
this.contextFormat = contextFormat;
this.eventPublisher = new ReactorKafkaEventPublisher<E, Meta, Context>(producerSettings, topic, bufferSize);
this.concurrentReplayStrategy = Option.of(concurrentReplayStrategy).getOrElse(ConcurrentReplayStrategy.WAIT);
this.eventStore = ReactivePostgresEventStore.create(
eventPublisher,
pgAsyncPool,
tableNames,
eventFormat,
metaFormat,
contextFormat
);
}
public BuilderWithKafkaSettings<E, Meta, Context> withSkipConcurrentReplayStrategy() {
return new BuilderWithKafkaSettings<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
ConcurrentReplayStrategy.SKIP,
eventPublisher,
eventStore
);
}
public BuilderWithKafkaSettings<E, Meta, Context> withNoConcurrentReplayStrategy() {
return new BuilderWithKafkaSettings<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
ConcurrentReplayStrategy.NO_STRATEGY,
eventPublisher,
eventStore
);
}
public BuilderWithKafkaSettings<E, Meta, Context> withWaitConcurrentReplayStrategy() {
return new BuilderWithKafkaSettings<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
ConcurrentReplayStrategy.WAIT,
eventPublisher,
eventStore
);
}
public BuilderWithKafkaSettings<E, Meta, Context> withConcurrentReplayStrategy(ConcurrentReplayStrategy concurrentReplayStrategy) {
return new BuilderWithKafkaSettings<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
concurrentReplayStrategy,
eventPublisher,
eventStore
);
}
public <S extends State<S>> BuilderWithEventHandler<S, E, Meta, Context> withEventHandler(EventHandler<S, E> eventHandler) {
return new BuilderWithEventHandler<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
eventPublisher,
concurrentReplayStrategy,
eventStore,
eventHandler
);
}
}
public static class BuilderWithEventHandler<S extends State<S>, E extends Event, Meta, Context> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public final JacksonEventFormat<?, E> eventFormat;
public final JacksonSimpleFormat<Meta> metaFormat;
public final JacksonSimpleFormat<Context> contextFormat;
public final ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher;
public final ConcurrentReplayStrategy concurrentReplayStrategy;
public final ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore;
public final EventHandler<S, E> eventHandler;
public BuilderWithEventHandler(PgAsyncPool pgAsyncPool, TableNames tableNames,
TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat,
JacksonSimpleFormat<Meta> metaFormat, JacksonSimpleFormat<Context> contextFormat,
ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher, ConcurrentReplayStrategy concurrentReplayStrategy,
ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore, EventHandler<S, E> eventHandler) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
this.metaFormat = metaFormat;
this.contextFormat = contextFormat;
this.eventPublisher = eventPublisher;
this.concurrentReplayStrategy = concurrentReplayStrategy;
this.eventStore = eventStore;
this.eventHandler = eventHandler;
}
public BuilderWithAggregateStore<S, E, Meta, Context> withAggregateStore(Function<BuilderWithEventHandler<S, E, Meta, Context>, AggregateStore<S, String, PgAsyncTransaction>> builder) {
return new BuilderWithAggregateStore<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
eventPublisher,
concurrentReplayStrategy,
eventStore,
eventHandler,
builder.apply(this));
}
public BuilderWithAggregateStore<S, E, Meta, Context> withAggregateStore(AggregateStore<S, String, PgAsyncTransaction> aggregateStore) {
return new BuilderWithAggregateStore<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
eventPublisher,
concurrentReplayStrategy,
eventStore,
eventHandler,
aggregateStore);
}
public BuilderWithAggregateStore<S, E, Meta, Context> withDefaultAggregateStore() {
return withDefaultAggregateStore(new AutoSnapshotingStrategy.NoOpSnapshotingStrategy());
}
public BuilderWithAggregateStore<S, E, Meta, Context> withDefaultAggregateStore(int snapshotEveryEventCount) {
return withDefaultAggregateStore(new AutoSnapshotingStrategy.CountSnapshotingStrategy(snapshotEveryEventCount));
}
public BuilderWithAggregateStore<S, E, Meta, Context> withDefaultAggregateStore(AutoSnapshotingStrategy autoSnapshotingStrategy) {
return new BuilderWithAggregateStore<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
eventPublisher,
concurrentReplayStrategy,
eventStore,
eventHandler,
new DefaultAggregateStore<>(autoSnapshotingStrategy, eventStore, eventHandler, transactionManager));
}
}
public static class BuilderWithAggregateStore<S extends State<S>, E extends Event, Meta, Context> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public final JacksonEventFormat<?, E> eventFormat;
public final JacksonSimpleFormat<Meta> metaFormat;
public final JacksonSimpleFormat<Context> contextFormat;
public final ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher;
public final ConcurrentReplayStrategy concurrentReplayStrategy;
public final ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore;
public final EventHandler<S, E> eventHandler;
public final AggregateStore<S, String, PgAsyncTransaction> aggregateStore;
public BuilderWithAggregateStore(PgAsyncPool pgAsyncPool, TableNames tableNames,
TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat,
JacksonSimpleFormat<Meta> metaFormat, JacksonSimpleFormat<Context> contextFormat,
ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher, ConcurrentReplayStrategy concurrentReplayStrategy,
ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore, EventHandler<S, E> eventHandler,
AggregateStore<S, String, PgAsyncTransaction> aggregateStore) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
this.metaFormat = metaFormat;
this.contextFormat = contextFormat;
this.eventPublisher = eventPublisher;
this.concurrentReplayStrategy = concurrentReplayStrategy;
this.eventStore = eventStore;
this.eventHandler = eventHandler;
this.aggregateStore = aggregateStore;
}
public <Error, C extends Command<Meta, Context>, Message> BuilderWithCommandHandler<Error, S, C, E, Message, Meta, Context> withCommandHandler(CommandHandlerGetter<Error, S, C, E, Message, PgAsyncTransaction> commandHandler) {
return new BuilderWithCommandHandler<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
eventPublisher,
concurrentReplayStrategy,
eventStore,
aggregateStore,
eventHandler,
commandHandler.commandHandler()
);
}
public <Error, C extends Command<Meta, Context>, Message> BuilderWithCommandHandler<Error, S, C, E, Message, Meta, Context> withCommandHandler(Function<BuilderWithAggregateStore<S, E, Meta, Context>, CommandHandlerGetter<Error, S, C, E, Message, PgAsyncTransaction>> commandHandler) {
return new BuilderWithCommandHandler<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
eventPublisher,
concurrentReplayStrategy,
eventStore,
aggregateStore,
eventHandler,
commandHandler.apply(this).commandHandler()
);
}
}
public static class BuilderWithCommandHandler<Error, S extends State<S>, C extends Command<Meta, Context>, E extends Event, Message, Meta, Context> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public final JacksonEventFormat<?, E> eventFormat;
public final JacksonSimpleFormat<Meta> metaFormat;
public final JacksonSimpleFormat<Context> contextFormat;
public final ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher;
public final ConcurrentReplayStrategy concurrentReplayStrategy;
public final ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore;
public final AggregateStore<S, String, PgAsyncTransaction> aggregateStore;
public final EventHandler<S, E> eventHandler;
public final CommandHandler<Error, S, C, E, Message, PgAsyncTransaction> commandHandler;
public BuilderWithCommandHandler(PgAsyncPool pgAsyncPool, TableNames tableNames,
TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat,
JacksonSimpleFormat<Meta> metaFormat, JacksonSimpleFormat<Context> contextFormat,
ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher, ConcurrentReplayStrategy concurrentReplayStrategy,
ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore,
AggregateStore<S, String, PgAsyncTransaction> aggregateStore, EventHandler<S, E> eventHandler,
CommandHandler<Error, S, C, E, Message, PgAsyncTransaction> commandHandler) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
this.metaFormat = metaFormat;
this.contextFormat = contextFormat;
this.eventPublisher = eventPublisher;
this.concurrentReplayStrategy = concurrentReplayStrategy;
this.eventStore = eventStore;
this.aggregateStore = aggregateStore;
this.eventHandler = eventHandler;
this.commandHandler = commandHandler;
}
public BuilderWithProjections<Error, S, C, E, Message, Meta, Context> withProjections(List<? extends ProjectionGetter<PgAsyncTransaction, E, Meta, Context>> projections) {
return new BuilderWithProjections<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
eventPublisher,
concurrentReplayStrategy,
eventStore,
aggregateStore,
eventHandler,
commandHandler,
projections.map(ProjectionGetter::projection)
);
}
public BuilderWithProjections<Error, S, C, E, Message, Meta, Context> withProjections(Function<BuilderWithCommandHandler<Error, S, C, E, Message, Meta, Context>, List<? extends ProjectionGetter<PgAsyncTransaction, E, Meta, Context>>> projections) {
return new BuilderWithProjections<>(
pgAsyncPool,
tableNames,
transactionManager,
eventFormat,
metaFormat,
contextFormat,
eventPublisher,
concurrentReplayStrategy,
eventStore,
aggregateStore,
eventHandler,
commandHandler,
projections.apply(this).map(ProjectionGetter::projection)
);
}
public BuilderWithProjections<Error, S, C, E, Message, Meta, Context> withProjections(ProjectionGetter<PgAsyncTransaction, E, Meta, Context>... projections) {
return withProjections(List.of(projections));
}
public BuilderWithProjections<Error, S, C, E, Message, Meta, Context> withNoProjections() {
return withProjections(List.empty());
}
}
public static class BuilderWithProjections<Error, S extends State<S>, C extends Command<Meta, Context>, E extends Event, Message, Meta, Context> {
public final PgAsyncPool pgAsyncPool;
public final TableNames tableNames;
public final TransactionManager<PgAsyncTransaction> transactionManager;
public final JacksonEventFormat<?, E> eventFormat;
public final JacksonSimpleFormat<Meta> metaFormat;
public final JacksonSimpleFormat<Context> contextFormat;
public final ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher;
public final ConcurrentReplayStrategy concurrentReplayStrategy;
public final ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore;
public final AggregateStore<S, String, PgAsyncTransaction> aggregateStore;
public final EventHandler<S, E> eventHandler;
public final CommandHandler<Error, S, C, E, Message, PgAsyncTransaction> commandHandler;
public final List<Projection<PgAsyncTransaction, E, Meta, Context>> projections;
public BuilderWithProjections(PgAsyncPool pgAsyncPool, TableNames tableNames,
TransactionManager<PgAsyncTransaction> transactionManager, JacksonEventFormat<?, E> eventFormat,
JacksonSimpleFormat<Meta> metaFormat, JacksonSimpleFormat<Context> contextFormat,
ReactorKafkaEventPublisher<E, Meta, Context> eventPublisher, ConcurrentReplayStrategy concurrentReplayStrategy,
ReactivePostgresEventStore<PgAsyncTransaction, E, Meta, Context> eventStore,
AggregateStore<S, String, PgAsyncTransaction> aggregateStore, EventHandler<S, E> eventHandler,
CommandHandler<Error, S, C, E, Message, PgAsyncTransaction> commandHandler,
List<Projection<PgAsyncTransaction, E, Meta, Context>> projections) {
this.pgAsyncPool = pgAsyncPool;
this.tableNames = tableNames;
this.transactionManager = transactionManager;
this.eventFormat = eventFormat;
this.metaFormat = metaFormat;
this.contextFormat = contextFormat;
this.eventPublisher = eventPublisher;
this.concurrentReplayStrategy = concurrentReplayStrategy;
this.eventStore = eventStore;
this.aggregateStore = aggregateStore;
this.eventHandler = eventHandler;
this.commandHandler = commandHandler;
this.projections = projections;
}
public EventProcessor<Error, S, C, E, PgAsyncTransaction, Message, Meta, Context> build() {
var ES = new EventProcessorImpl<Error, S, C, E, PgAsyncTransaction, Message, Meta, Context>(
eventStore,
transactionManager,
aggregateStore,
commandHandler,
eventHandler,
projections
);
eventPublisher.start(eventStore, concurrentReplayStrategy);
return ES;
}
}
}