class Falcon::Command::Supervisor

def call

Connect to the supervisor and execute the requested command.
def call
	Async do
		endpoint.connect do |socket|
			stream = Async::IO::Stream.new(socket)
			
			@command.call(stream)
		end
	end
end