Instantiate a server and libvent

You can use this to create the first HttpFactory, which is the most common.

Property definitions

nitcorn $ HttpFactory :: and_libevent
	# Instantiate a server and libvent
	#
	# You can use this to create the first `HttpFactory`, which is the most common.
	init and_libevent do init(new NativeEventBase)
lib/nitcorn/reactor.nit:132,2--135,47

nitcorn :: pthreads $ HttpFactory :: and_libevent
	redef init and_libevent
	do
		use_pthreads
		super
	end
lib/nitcorn/pthreads.nit:22,2--26,4