Property definitions

libevent $ EchoConnection :: defaultinit
# Connection echoing data received from clients back at them
class EchoConnection
	super Connection

	redef fun read_callback(content)
	do
		print "Received: {content}"
		write content
	end
end
lib/libevent/libevent_example.nit:30,1--39,3