var fileHandleForReading : FileHandle
var fileHandleForWriting : FileHandle
Availability 有効性
Technology
class Pipe : NSObject
Pipe
objects provide an object-oriented interface for accessing pipes. An Pipe
object represents both ends of a pipe and enables communication through the pipe. A pipe is a one-way communications channel between related processes; one process writes data, while the other process reads that data. The data that passes through the pipe is buffered; the size of the buffer is determined by the underlying operating system. Pipe
is an abstract class, the public interface of a class cluster.
Pipe
オブジェクトは、パイプにアクセスするためのオブジェクト指向インターフェイスを提供します。あるPipe
オブジェクトは、パイプの両端を表します、そしてそのパイプを通した通信を可能にします。パイプは、関連プロセス間の一方通行通信経路です;1つのプロセスはデータを書き出します、いっぽう他方のプロセスはそのデータを読み出します。パイプを通して渡されるデータはバッファされます;バッファの大きさは基底オペレーティングシステムによって決定されます。Pipe
は、ある抽象クラス、あるクラスクラスタのパブリックインターフェイスです。
var fileHandleForReading : FileHandle
var fileHandleForWriting : FileHandle
class Process