class Falcon::Command::Supervisor

def call

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