public IEventProcessor CreateEventProcessor(PartitionContext context)
 {
     var processor = new ColdStorageProcessor(
         _blobWriterFactory,
         _warningLevel,
         _tripLevel,
         _stallInterval,
         _logCooldownInterval, 
         _eventHubName
     );
     return processor;
 }
        public IEventProcessor CreateEventProcessor(PartitionContext context)
        {
            var processor = new ColdStorageProcessor(
                _blobWriterFactory,
                _warningLevel,
                _tripLevel,
                _stallInterval,
                _logCooldownInterval,
                _eventHubName
                );

            return(processor);
        }