class Vines::Config::ComponentPort

Public Class Methods

new(config, host='0.0.0.0', port=5347, &block) click to toggle source
Calls superclass method Vines::Config::Port::new
# File lib/vines/config/port.rb, line 126
def initialize(config, host='0.0.0.0', port=5347, &block)
  @stream = Vines::Stream::Component
  super(config, host, port, &block)
end