May 2003
Intermediate to advanced
566 pages
27h 29m
English
NSPipe — Mac OS X 10.0
This class provides an interface to objects that represent
Unix pipes that
can be used to transfer data between applications. Pipes are one-way
communication channels with a read-end and a write-end.
NSFileHandle objects representing these ends of
the pipes are obtained by invoking
fileHandleForReading and
fileHandleForWriting.
|
|
@interface NSPipe : NSObject
|
// Convenience Constructors
|
+ (id)pipe;
|
// Initializers
|
- (id)init;
|
// Instance Methods
|
- (NSFileHandle *)fileHandleForReading;
|
- (NSFileHandle *)fileHandleForWriting;
|
Read now
Unlock full access