Class 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 47
47:       def closed!
48:         @status = :closed
49:       end
closed?() click to toggle source
    # File lib/amq/client/openable.rb, line 28
28:       def closed?
29:         @status == :closed
30:       end
closing!() click to toggle source
    # File lib/amq/client/openable.rb, line 57
57:       def closing!
58:         @status = :closing
59:       end
closing?() click to toggle source
    # File lib/amq/client/openable.rb, line 38
38:       def closing?
39:         @status == :closing
40:       end
open?() click to toggle source
Alias for: opened?
opened!() click to toggle source
    # File lib/amq/client/openable.rb, line 43
43:       def opened!
44:         @status = :opened
45:       end
opened?() click to toggle source
    # File lib/amq/client/openable.rb, line 23
23:       def opened?
24:         @status == :opened
25:       end
Also aliased as: open?
opening!() click to toggle source
    # File lib/amq/client/openable.rb, line 53
53:       def opening!
54:         @status = :opening
55:       end
opening?() click to toggle source
    # File lib/amq/client/openable.rb, line 34
34:       def opening?
35:         @status == :opening
36:       end
status=(value) click to toggle source
    # File lib/amq/client/openable.rb, line 15
15:       def status=(value)
16:         if VALUES.include?(value)
17:           @status = value
18:         else
19:           raise ImproperStatusError.new(value)
20:         end
21:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.