nitcornnitcorn :: pthreads $ HttpFactory
Factory to createHttpServer instances, and hold the libevent base handler
			nitcorn :: pthreads $ HttpFactory
Factory to createHttpServer instances, and hold the libevent base handler
			FileServer action, which is a standard and minimal file server
			HttpRequest class and services to create it
			Serializable::inspect to show more useful information
			more_collections :: more_collections
Highly specific, but useful, collections-related classes.serialization :: serialization_core
Abstract services to serialize Nit objects to different formatscore :: union_find
union–find algorithm using an efficient disjoint-set data structurerestful annotation documented at lib/nitcorn/restful.nit
			
# Activate the use of pthreads with `nitcorn`
module pthreads
import nitcorn
import ::pthreads
redef class HttpFactory
	redef init and_libevent
	do
		use_pthreads
		super
	end
end
lib/nitcorn/pthreads.nit:15,1--27,3