class Async::HTTP::Server

def self.for(*arguments, **options, &block)

@parameter options [Hash] Options to pass to {initialize}.
@parameter arguments [Array] Arguments to pass to {initialize}.
Create a server using a block as the application handler.
def self.for(*arguments, **options, &block)
	self.new(block, *arguments, **options)
end