00001 /* 00002 * Generated by class-dump 3.1.1. 00003 * 00004 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2006 by Steve Nygard. 00005 */ 00006 00007 #import "NSObject.h" 00008 00009 @class NSURLQueueNode; 00010 00011 @interface NSURLQueue : NSObject 00012 { 00013 unsigned int count; 00014 NSURLQueueNode *head; 00015 NSURLQueueNode *tail; 00016 id monitor; 00017 BOOL waitOnTake; 00018 BOOL _pad1; 00019 BOOL _pad2; 00020 BOOL _pad3; 00021 } 00022 00023 + (id)newNode; 00024 - (id)init; 00025 - (void)dealloc; 00026 - (void)finalize; 00027 - (void)put:(id)fp8; 00028 - (id)take; 00029 - (id)peek; 00030 - (id)peekAt:(unsigned int)fp8; 00031 - (BOOL)remove:(id)fp8; 00032 - (void)clear; 00033 - (int)indexOf:(id)fp8; 00034 - (BOOL)isEmpty; 00035 - (unsigned int)count; 00036 - (BOOL)waitOnTake; 00037 - (void)setWaitOnTake:(BOOL)fp8; 00038 00039 @end 00040