We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now we have this code ready but it is not enabled as default dispatcher:
module RailsEventStore class Client < RubyEventStore::Client def initialize(repository: RailsEventStore.event_repository, event_broker: EventBroker.new, page_size: PAGE_SIZE) capture_metadata = ->{ Thread.current[:rails_event_store] } super(repository: repository, event_broker: event_broker, page_size: page_size, metadata_proc: capture_metadata) end end end
We could detect if active_job is enabled and in such cass pass ActiveJobDispatcher to EventBroker.
ActiveJobDispatcher
EventBroker
ActiveJobDispatcher or standard Dispatcher could be wrapped in instrumentation proxy #90 .
Dispatcher
Related to #124 as well
The text was updated successfully, but these errors were encountered:
Also, I believe it could be better to have dispatcher as separate dependency, instead of internal dependency of the broker.
dispatcher
Sorry, something went wrong.
After done, fix the documentation in http://railseventstore.org/docs/subscribe/ to no longer require custom config
rubygems/rubygems#346 rubygems/rubygems#1811
2eb821c
No branches or pull requests
Right now we have this code ready but it is not enabled as default dispatcher:
We could detect if active_job is enabled and in such cass pass
ActiveJobDispatcher
toEventBroker
.ActiveJobDispatcher
or standardDispatcher
could be wrapped in instrumentation proxy #90 .Related to #124 as well
The text was updated successfully, but these errors were encountered: