@SuppressWarnings({ "unchecked", "rawtypes" })
public static SixModelObject linesasync(SixModelObject obj, SixModelObject resultType,
long chomp, SixModelObject queue, SixModelObject done, SixModelObject error,
ThreadContext tc) {
if (obj instanceof IOHandleInstance) {
IOHandleInstance h = (IOHandleInstance)obj;
if (h.handle instanceof IIOAsyncReadable)
((IIOAsyncReadable)h.handle).lines(tc, resultType, chomp != 0,
(LinkedBlockingQueue)((JavaObjectWrapper)queue).theObject,
done, error);
else