Class: IRuby::OStream
- Inherits:
-
Object
- Object
- IRuby::OStream
- Defined in:
- lib/iruby/ostream.rb
Overview
IO-like object that publishes to 0MQ socket.
Instance Attribute Summary collapse
-
#sync ⇒ Object
Returns the value of attribute sync.
Instance Method Summary collapse
- #close ⇒ Object
- #flush ⇒ Object
-
#initialize(session, name) ⇒ OStream
constructor
A new instance of OStream.
- #isatty ⇒ Object (also: #tty?)
- #printf(format, *obj) ⇒ Object
- #puts(*obj) ⇒ Object
- #read(*args) ⇒ Object (also: #next, #readline)
-
#set_encoding(extern, intern) ⇒ Object
Called by irb.
- #write(*obj) ⇒ Object (also: #<<, #print)
- #writelines(lines) ⇒ Object
Constructor Details
#initialize(session, name) ⇒ OStream
Returns a new instance of OStream.
6 7 8 |
# File 'lib/iruby/ostream.rb', line 6 def initialize(session, name) @session, @name = session, name end |
Instance Attribute Details
#sync ⇒ Object
Returns the value of attribute sync.
4 5 6 |
# File 'lib/iruby/ostream.rb', line 4 def sync @sync end |
Instance Method Details
#close ⇒ Object
10 11 12 |
# File 'lib/iruby/ostream.rb', line 10 def close @session = nil end |
#flush ⇒ Object
14 15 |
# File 'lib/iruby/ostream.rb', line 14 def flush end |
#isatty ⇒ Object Also known as: tty?
17 18 19 |
# File 'lib/iruby/ostream.rb', line 17 def isatty false end |
#printf(format, *obj) ⇒ Object
35 36 37 38 |
# File 'lib/iruby/ostream.rb', line 35 def printf(format, *obj) str = build_string { |sio| sio.printf(format, *obj) } session_send(str) end |
#puts(*obj) ⇒ Object
40 41 42 43 |
# File 'lib/iruby/ostream.rb', line 40 def puts(*obj) str = build_string { |sio| sio.puts(*obj) } session_send(str) end |
#read(*args) ⇒ Object Also known as: next, readline
22 23 24 |
# File 'lib/iruby/ostream.rb', line 22 def read(*args) raise IOError, 'not opened for reading' end |
#set_encoding(extern, intern) ⇒ Object
Called by irb
50 51 52 |
# File 'lib/iruby/ostream.rb', line 50 def set_encoding(extern, intern) a = extern end |
#write(*obj) ⇒ Object Also known as: <<, print
28 29 30 31 |
# File 'lib/iruby/ostream.rb', line 28 def write(*obj) str = build_string { |sio| sio.write(*obj) } session_send(str) end |
#writelines(lines) ⇒ Object
45 46 47 |
# File 'lib/iruby/ostream.rb', line 45 def writelines(lines) lines.each { |s| write(s) } end |