class Falcon::Service::Supervisor

def start

Bind the supervisor to the specified endpoint.
def start
	Console.logger.info(self) {"Binding to #{self.endpoint}..."}
	
	@bound_endpoint = Sync{self.endpoint.bound}
	
	super
end