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.



705
706
707
# File 'lib/em/pure_ruby.rb', line 705

def initialize io
  super
end

Class Method Details

.openObject



700
701
702
# File 'lib/em/pure_ruby.rb', line 700

def self.open
  EvmaKeyboard.new STDIN
end

Instance Method Details

#select_for_reading?Boolean

Returns:

  • (Boolean)


714
715
716
# File 'lib/em/pure_ruby.rb', line 714

def select_for_reading?
  true
end

#select_for_writing?Boolean

Returns:

  • (Boolean)


710
711
712
# File 'lib/em/pure_ruby.rb', line 710

def select_for_writing?
  false
end