Sha256: 8d4736bf6c205e003429aa0b106e7bdb07412ec67b30de336d7aa0804fd7163b

Contents?: true

Size: 1.35 KB

Versions: 4

Compression:

Stored size: 1.35 KB

Contents

module EventSourcery
  module EventProcessing
    class ESPProcess
      def initialize(event_processor:,
                     event_source:,
                     subscription_master: EventStore::SignalHandlingSubscriptionMaster.new)
        @event_processor = event_processor
        @event_source = event_source
        @subscription_master = subscription_master
      end
      
      # This will start the Event Stream Processor which will subscribe
      # to the event stream source.
      def start
        name_process
        error_handler.with_error_handling do
          EventSourcery.logger.info("Starting #{processor_name}")
          subscribe_to_event_stream
          EventSourcery.logger.info("Stopping #{@event_processor.processor_name}")
        end
      rescue Exception => e
        EventSourcery.logger.error(e)
        raise e
      end

      private

      def processor_name
        @event_processor.processor_name.to_s
      end

      def error_handler
        @error_handler ||= EventSourcery.config.error_handler_class.new(processor_name: processor_name)
      end

      def name_process
        Process.setproctitle(@event_processor.class.name)
      end

      def subscribe_to_event_stream
        @event_processor.subscribe_to(@event_source,
                                      subscription_master: @subscription_master)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
event_sourcery-0.18.0 lib/event_sourcery/event_processing/esp_process.rb
event_sourcery-0.17.0 lib/event_sourcery/event_processing/esp_process.rb
event_sourcery-0.16.1 lib/event_sourcery/event_processing/esp_process.rb
event_sourcery-0.15.0 lib/event_sourcery/event_processing/esp_process.rb