Class: EventMachine::EvmaKeyboard

Inherits:
StreamObject show all
Defined in:
lib/em/pure_ruby.rb

Instance Attribute Summary

Attributes inherited from Selectable

#io, #uuid

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StreamObject

#eventable_read, #eventable_write, #get_outbound_data_size, #get_peername, #heartbeat, #schedule_close, #send_data

Methods inherited from Selectable

#close_scheduled?, #get_peername, #heartbeat, #set_inactivity_timeout

Constructor Details

#initialize(io) ⇒ EvmaKeyboard

Returns a new instance of EvmaKeyboard.



707
708
709
# File 'lib/em/pure_ruby.rb', line 707

def initialize io
  super
end

Class Method Details

.openObject



702
703
704
# File 'lib/em/pure_ruby.rb', line 702

def self.open
  EvmaKeyboard.new STDIN
end

Instance Method Details

#select_for_reading?Boolean

Returns:

  • (Boolean)


716
717
718
# File 'lib/em/pure_ruby.rb', line 716

def select_for_reading?
  true
end

#select_for_writing?Boolean

Returns:

  • (Boolean)


712
713
714
# File 'lib/em/pure_ruby.rb', line 712

def select_for_writing?
  false
end