-
Notifications
You must be signed in to change notification settings - Fork 2
es cqrs.Interface.EventStoreOptionsFactory
Sclable CI edited this page Oct 7, 2024
·
7 revisions
@sclable/nestjs-libs / es-cqrs / EventStoreOptionsFactory
Implement this factory interface to create a options for the event store
Example:
class OptionsFactory implements EventStoreOptionsFactory {
public async createEventStoreOptions() {
return { logging: true }
}
}
createEventStoreOptions():
EventStoreOptions
|Promise
<EventStoreOptions
>
EventStoreOptions
| Promise
<EventStoreOptions
>