| 46 | } |
| 47 | |
| 48 | DisruptorFixture::EventProcessorFactory::EventProcessorFactory(const std::shared_ptr< disruptor< TestEvent > >& disruptor, |
| 49 | const std::shared_ptr< IEventHandler< TestEvent > >& eventHandler, |
| 50 | std::int32_t sequenceLength) |
| 51 | : m_disruptor(disruptor) |
| 52 | , m_eventHandler(eventHandler) |
| 53 | , m_sequenceLength(sequenceLength) |
| 54 | { |
| 55 | } |
| 56 | |
| 57 | std::shared_ptr< IEventProcessor > DisruptorFixture::EventProcessorFactory::createEventProcessor(const std::shared_ptr< RingBuffer< TestEvent > >& ringBuffer, |
| 58 | const std::vector< std::shared_ptr< ISequence > >& barrierSequences) |
nothing calls this directly
no outgoing calls
no test coverage detected