module AMQP::ServerNamedEntity
Common behavior of AMQ
entities that can be either client or server-named, for example, exchanges and queues.
Public Instance Methods
server_named?()
click to toggle source
@return [Boolean] true if this entity is anonymous (server-named)
# File lib/amqp/entity.rb, line 65 def server_named? @server_named || @name.nil? || @name.empty? end
Also aliased as: anonymous?