Class/Module Index [+]

Quicksearch

AMQ::Client::Openable

Constants

VALUES

Attributes

status[R]

Public Instance Methods

closed!() click to toggle source
# File lib/amq/client/openable.rb, line 46
def closed!
  @status = :closed
end
closed?() click to toggle source
# File lib/amq/client/openable.rb, line 27
def closed?
  @status == :closed
end
closing!() click to toggle source
# File lib/amq/client/openable.rb, line 56
def closing!
  @status = :closing
end
closing?() click to toggle source
# File lib/amq/client/openable.rb, line 37
def closing?
  @status == :closing
end
open?() click to toggle source
Alias for: opened?
opened!() click to toggle source
# File lib/amq/client/openable.rb, line 42
def opened!
  @status = :opened
end
opened?() click to toggle source
# File lib/amq/client/openable.rb, line 22
def opened?
  @status == :opened
end
Also aliased as: open?
opening!() click to toggle source
# File lib/amq/client/openable.rb, line 52
def opening!
  @status = :opening
end
opening?() click to toggle source
# File lib/amq/client/openable.rb, line 33
def opening?
  @status == :opening
end
status=(value) click to toggle source
# File lib/amq/client/openable.rb, line 14
def status=(value)
  if VALUES.include?(value)
    @status = value
  else
    raise ImproperStatusError.new(value)
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.