Class: Aws::CloudWatchLogs::EventStreams::StartLiveTailResponseStream

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-cloudwatchlogs/event_streams.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeStartLiveTailResponseStream

Returns a new instance of StartLiveTailResponseStream.



14
15
16
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 14

def initialize
  @event_emitter = Aws::EventEmitter.new
end

Instance Attribute Details

#event_emitterObject (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.

Returns:

  • Aws::EventEmitter



58
59
60
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 58

def event_emitter
  @event_emitter
end

Instance Method Details

#on_error_event(&block) ⇒ Object



34
35
36
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 34

def on_error_event(&block)
  @event_emitter.on(:error, block) if block_given?
end

#on_event(&block) ⇒ Object



46
47
48
49
50
51
52
53
54
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 46

def on_event(&block)
  on_session_start_event(&block)
  on_session_update_event(&block)
  on_session_timeout_exception_event(&block)
  on_session_streaming_exception_event(&block)
  on_error_event(&block)
  on_initial_response_event(&block)
  on_unknown_event(&block)
end

#on_initial_response_event(&block) ⇒ Object



38
39
40
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 38

def on_initial_response_event(&block)
  @event_emitter.on(:initial_response, block) if block_given?
end

#on_session_start_event(&block) ⇒ Object



18
19
20
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 18

def on_session_start_event(&block)
  @event_emitter.on(:session_start, block) if block_given?
end

#on_session_streaming_exception_event(&block) ⇒ Object



30
31
32
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 30

def on_session_streaming_exception_event(&block)
  @event_emitter.on(:session_streaming_exception, block) if block_given?
end

#on_session_timeout_exception_event(&block) ⇒ Object



26
27
28
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 26

def on_session_timeout_exception_event(&block)
  @event_emitter.on(:session_timeout_exception, block) if block_given?
end

#on_session_update_event(&block) ⇒ Object



22
23
24
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 22

def on_session_update_event(&block)
  @event_emitter.on(:session_update, block) if block_given?
end

#on_unknown_event(&block) ⇒ Object



42
43
44
# File 'lib/aws-sdk-cloudwatchlogs/event_streams.rb', line 42

def on_unknown_event(&block)
  @event_emitter.on(:unknown_event, block) if block_given?
end