Class: Aws::IoTSiteWise::EventStreams::ResponseStream
- Inherits:
-
Object
- Object
- Aws::IoTSiteWise::EventStreams::ResponseStream
- Defined in:
- lib/aws-sdk-iotsitewise/event_streams.rb
Instance Attribute Summary collapse
-
#event_emitter ⇒ Object
readonly
private
Aws::EventEmitter.
Instance Method Summary collapse
-
#initialize ⇒ ResponseStream
constructor
A new instance of ResponseStream.
- #on_access_denied_exception_event(&block) ⇒ Object
- #on_conflicting_operation_exception_event(&block) ⇒ Object
- #on_error_event(&block) ⇒ Object
- #on_event(&block) ⇒ Object
- #on_initial_response_event(&block) ⇒ Object
- #on_internal_failure_exception_event(&block) ⇒ Object
- #on_invalid_request_exception_event(&block) ⇒ Object
- #on_limit_exceeded_exception_event(&block) ⇒ Object
- #on_output_event(&block) ⇒ Object
- #on_resource_not_found_exception_event(&block) ⇒ Object
- #on_throttling_exception_event(&block) ⇒ Object
- #on_trace_event(&block) ⇒ Object
- #on_unknown_event(&block) ⇒ Object
Constructor Details
#initialize ⇒ ResponseStream
Returns a new instance of ResponseStream.
14 15 16 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 14 def initialize @event_emitter = Aws::EventEmitter.new end |
Instance Attribute Details
#event_emitter ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns Aws::EventEmitter.
83 84 85 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 83 def event_emitter @event_emitter end |
Instance Method Details
#on_access_denied_exception_event(&block) ⇒ Object
26 27 28 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 26 def on_access_denied_exception_event(&block) @event_emitter.on(:access_denied_exception, block) if block_given? end |
#on_conflicting_operation_exception_event(&block) ⇒ Object
30 31 32 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 30 def on_conflicting_operation_exception_event(&block) @event_emitter.on(:conflicting_operation_exception, block) if block_given? end |
#on_error_event(&block) ⇒ Object
54 55 56 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 54 def on_error_event(&block) @event_emitter.on(:error, block) if block_given? end |
#on_event(&block) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 66 def on_event(&block) on_trace_event(&block) on_output_event(&block) on_access_denied_exception_event(&block) on_conflicting_operation_exception_event(&block) on_internal_failure_exception_event(&block) on_invalid_request_exception_event(&block) on_limit_exceeded_exception_event(&block) on_resource_not_found_exception_event(&block) on_throttling_exception_event(&block) on_error_event(&block) on_initial_response_event(&block) on_unknown_event(&block) end |
#on_initial_response_event(&block) ⇒ Object
58 59 60 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 58 def on_initial_response_event(&block) @event_emitter.on(:initial_response, block) if block_given? end |
#on_internal_failure_exception_event(&block) ⇒ Object
34 35 36 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 34 def on_internal_failure_exception_event(&block) @event_emitter.on(:internal_failure_exception, block) if block_given? end |
#on_invalid_request_exception_event(&block) ⇒ Object
38 39 40 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 38 def on_invalid_request_exception_event(&block) @event_emitter.on(:invalid_request_exception, block) if block_given? end |
#on_limit_exceeded_exception_event(&block) ⇒ Object
42 43 44 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 42 def on_limit_exceeded_exception_event(&block) @event_emitter.on(:limit_exceeded_exception, block) if block_given? end |
#on_output_event(&block) ⇒ Object
22 23 24 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 22 def on_output_event(&block) @event_emitter.on(:output, block) if block_given? end |
#on_resource_not_found_exception_event(&block) ⇒ Object
46 47 48 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 46 def on_resource_not_found_exception_event(&block) @event_emitter.on(:resource_not_found_exception, block) if block_given? end |
#on_throttling_exception_event(&block) ⇒ Object
50 51 52 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 50 def on_throttling_exception_event(&block) @event_emitter.on(:throttling_exception, block) if block_given? end |
#on_trace_event(&block) ⇒ Object
18 19 20 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 18 def on_trace_event(&block) @event_emitter.on(:trace, block) if block_given? end |
#on_unknown_event(&block) ⇒ Object
62 63 64 |
# File 'lib/aws-sdk-iotsitewise/event_streams.rb', line 62 def on_unknown_event(&block) @event_emitter.on(:unknown_event, block) if block_given? end |