/headers/Message/InvocationQueue.h

gehe zur Dokumentation dieser Datei
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 NSConditionLock, NSMutableArray;
00010 
00011 @interface InvocationQueue : NSObject
00012 {
00013     NSMutableArray *_items;
00014     unsigned int _maxThreads:16;
00015     unsigned int _numThreads:16;
00016     double _threadRecycleTimeout;
00017     NSConditionLock *_threadRecycleLock;
00018 }
00019 
00020 + (void)initialize;
00021 - (id)init;
00022 - (void)setMaxThreadCount:(unsigned int)fp8;
00023 - (unsigned int)maxThreadCount;
00024 - (void)dealloc;
00025 - (void)removeAllItems;
00026 - (void)_drainQueue;
00027 - (void)addInvocation:(id)fp8;
00028 - (void)didCancel:(id)fp8;
00029 - (unsigned int)invocationCount;
00030 - (void)setThreadRecycleTimeout:(double)fp8;
00031 - (double)threadRecycleTimeout;
00032 
00033 @end
00034