blob: 20825a53d42095d8cca9d09b194cedfac39ad6db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// WriterThreadPool.h
// Liaison
//
// Created by Brian Cully on Wed Feb 26 2003.
// Copyright (c) 2003 Brian Cully. All rights reserved.
//
@interface WriterThreadPool : NSObject {
NSMutableDictionary *theWriterThreads;
}
+ (WriterThreadPool *)sharedPool;
- (void)writeData: (NSData *)someData to: (NSFileHandle *)aFileHandle;
- (void)killThreadFor: (NSFileHandle *)aFileHandle;
@property (retain) NSMutableDictionary *theWriterThreads;
@end
|