Module: EventHub
- Defined in:
- lib/eventhub/message.rb,
lib/eventhub/version.rb,
lib/eventhub/constant.rb,
lib/eventhub-processor.rb,
lib/eventhub/processor.rb,
lib/eventhub/multi_logger.rb,
lib/eventhub/configuration.rb
Defined Under Namespace
Classes: Configuration, Message, MultiLogger, Processor
Constant Summary collapse
- VERSION =
"0.0.5"- EVENT_HUB_QUEUE_INBOUND =
'inbound'- STATUS_INITIAL =
initial status code
0- STATUS_SUCCESS =
compare with HTTP Status Code: Success
200- STATUS_RETRIED =
compare with HTTP Status Code: Multiple Choices
300- STATUS_INVALID =
compare with HTTP Status Code: Bad request
400- STATUS_UNDELIVERABLE =
comapre with HTTP Status Code: Server Error
500
Class Method Summary collapse
Class Method Details
.logger ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/eventhub-processor.rb', line 18 def self.logger unless @logger a = Logger.new(STDOUT) @logger = MultiLogger.new(a) end @logger end |