Method: Spider::Model::Storage::ConnectionPool#clear

Defined in:
lib/spiderfw/model/storage/connection_pool.rb

#clearObject



82
83
84
85
86
87
88
# File 'lib/spiderfw/model/storage/connection_pool.rb', line 82

def clear
    @connections.each do |c|
        @provider.disconnect(c)
    end
    @connections = []
    @free_connections = []
end