Method: Vines::Router#initialize

Defined in:
lib/vines/router.rb

#initialize(config) ⇒ Router

Returns a new instance of Router.



13
14
15
16
17
# File 'lib/vines/router.rb', line 13

def initialize(config)
  @config = config
  @clients, @servers, @components = {}, [], []
  @pending = Hash.new {|h,k| h[k] = [] }
end