Class: PryRemote::Client
Overview
A client is used to retrieve information from the client program.
Instance Attribute Summary collapse
-
#input ⇒ Object
Returns the value of attribute input.
-
#output ⇒ Object
Returns the value of attribute output.
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
-
#thread ⇒ Object
Returns the value of attribute thread.
Instance Method Summary collapse
-
#input_proxy ⇒ InputProxy
Proxy for the input.
-
#kill ⇒ Object
Tells the client the session is terminated.
-
#wait ⇒ Object
Waits until both an input and output are set.
Instance Attribute Details
#input ⇒ Object
Returns the value of attribute input
113 114 115 |
# File 'lib/pry-remote.rb', line 113 def input @input end |
#output ⇒ Object
Returns the value of attribute output
113 114 115 |
# File 'lib/pry-remote.rb', line 113 def output @output end |
#stderr ⇒ Object
Returns the value of attribute stderr
113 114 115 |
# File 'lib/pry-remote.rb', line 113 def stderr @stderr end |
#stdout ⇒ Object
Returns the value of attribute stdout
113 114 115 |
# File 'lib/pry-remote.rb', line 113 def stdout @stdout end |
#thread ⇒ Object
Returns the value of attribute thread
113 114 115 |
# File 'lib/pry-remote.rb', line 113 def thread @thread end |
Instance Method Details
#input_proxy ⇒ InputProxy
Returns Proxy for the input.
125 126 127 |
# File 'lib/pry-remote.rb', line 125 def input_proxy InputProxy.new input end |
#kill ⇒ Object
Tells the client the session is terminated
120 121 122 |
# File 'lib/pry-remote.rb', line 120 def kill thread.run end |
#wait ⇒ Object
Waits until both an input and output are set
115 116 117 |
# File 'lib/pry-remote.rb', line 115 def wait sleep 0.01 until input and output and thread end |