createRepositoryEventsSubscriptions<T> function
IEventsSubscriptions<T>
createRepositoryEventsSubscriptions<T>(
- IEventRepository<
T> repository, { - StreamTransformer<
T, T> ? transformAll, - StreamModifier<
T> ? modifyAll,
Implementation
IEventsSubscriptions<T> createRepositoryEventsSubscriptions<T>(
IEventRepository<T> repository, {
StreamTransformer<T, T>? transformAll,
StreamModifier<T>? modifyAll,
}) =>
EventsSubscriptions<T>(repository.stream, transformAll: transformAll, modifyAll: modifyAll);