Method: CPEE::Persistence.extract_handlers

Defined in:
lib/cpee/persistence.rb

.extract_handlers(id, opts) ⇒ Object

}}}



105
106
107
108
109
# File 'lib/cpee/persistence.rb', line 105

def self::extract_handlers(id,opts) #{{{
  opts[:redis].smembers("instance:#{id}/handlers").map do |e|
    [e, opts[:redis].get("instance:#{id}/handlers/#{e}/url")]
  end
end