class Async::List

def initialize

def initialize
	@head = nil
	@tail = nil
	@size = 0
end