[Previous]
[Up]
[Next]
NSTask
Authors
- Richard Frith-Macdonald
-
Version: 0.1
Date: 28 February, 2000
Declared in: Foundation/NSTask.h
Inherits from: NSObject
Conforms to: NSObject
+ (NSTask*) launchedTaskWithLaunchPath: (NSString*)path arguments: (NSArray*)arguments;
- (NSArray*) arguments;
- (NSString*) currentDirectoryPath;
- (NSDictionary*) environment;
- (id) init;
- (void) interrupt;
- (BOOL) isRunning;
- (void) launch;
- (NSString*) launchPath;
- (void) setArguments: (NSArray*)arguments;
- (void) setCurrentDirectoryPath: (NSString*)path;
- (void) setEnvironment: (NSDictionary*)environmentDictionary;
- (void) setLaunchPath: (NSString*)path;
- (void) setStandardError: (id)file;
- (void) setStandardInput: (id)file;
- (void) setStandardOutput: (id)file;
- (id) standardError;
- (id) standardInput;
- (id) standardOutput;
- (void) terminate;
- (int) terminationStatus;
- (void) waitUntilExit;