class Falcon::Service::Application

def start

Invoke {preload!} to load shared resources into the parent process.
Prepare the bound endpoint for the application instances.
def start
	Console.logger.info(self) {"Binding to #{self.endpoint}..."}
	
	@bound_endpoint = Async::Reactor.run do
		Async::IO::SharedEndpoint.bound(self.endpoint)
	end.wait
	
	preload!
	
	super
end