- D
- I
- K
- M
- N
- S
- T
[RW] | current_job | The active irb session |
Creates a new JobManager object
Deletes the job at the given key
.
# File lib/irb/ext/multi-irb.rb, line 124 def delete(key) case key when Integer IRB.fail NoSuchJob, key unless @jobs[key] @jobs[key] = nil else catch(:EXISTS) do @jobs.each_index do |i| if @jobs[i] and (@jobs[i][0] == key || @jobs[i][1] == key || @jobs[i][1].context.main.equal?(key)) @jobs[i] = nil throw :EXISTS end end IRB.fail NoSuchJob, key end end until assoc = @jobs.pop; end unless @jobs.empty? @jobs.push assoc end
Add the given irb
session to the jobs Array.
Outputs a list of jobs, see the irb command irb_jobs
, or
jobs
.
# File lib/irb/ext/multi-irb.rb, line 148 def inspect ary = [] @jobs.each_index do |i| th, irb = @jobs[i] next if th.nil? if th.alive? if th.stop? t_status = "stop" else t_status = "running" end else t_status = "exited" end ary.push format("#%d->%s on %s (%s: %s)", i, irb.context.irb_name, irb.context.main, th, t_status) end ary.join("\n") end
Terminates the irb sessions specified by the given keys
.
Raises an IrbAlreadyDead exception if one of the given keys
is
already terminated.
See Thread#exit for more information.
Returns the top level irb session.
Returns the top level thread.
Returns the associated job for the given key
.
If given an Integer, it will return the
key
index for the jobs Array.
When an instance of Irb is given, it will return the
irb session associated with key
.
If given an instance of Thread, it will return
the associated thread key
using Object#=== on the jobs Array.
Otherwise returns the irb session with the same top-level binding as the
given key
.
Raises a NoSuchJob exception if no job can be found with the given
key
.
Changes the current active irb session to the given key
in the
jobs Array.
Raises an IrbAlreadyDead exception if the given key
is no
longer alive.
If the given irb session is already active, an IrbSwitchedToCurrentThread exception is raised.