func CFStreamCreateBoundPair (CFAllocator!, UnsafeMutablePointer<Unmanaged<CFReadStream>?>!, UnsafeMutablePointer<Unmanaged<CFWriteStream>?>!, CFIndex)
Creates a bound pair of read and write streams.
読み出しおよび書き出しストリームの束縛された対を作成します。
Availability 有効性
Technology
class func getBoundStreams(withBufferSize bufferSize: Int
,
inputStream: AutoreleasingUnsafeMutablePointer
<InputStream
?>?,
outputStream: AutoreleasingUnsafeMutablePointer
<OutputStream
?>?)
transferBufferSize
The size of the buffer, in bytes, used to transfer data from input
to output
.
データをinput
からoutput
へと転送するのに使われるバッファの大きさ、バイトで。
inputStream
On return, contains an input stream. 戻りでは、入力ストリームを含みます。
outputStream
On return, contains an output stream. 戻りでは、出力ストリームを含みます。
The created streams are bound to one another, such that any data written to output
is received by input
.
作成されたストリームは互いに束縛されます、output
に書き出されたあらゆるデータがinput
によって受け取られるような。
This is a convenience method for calling CFStream
and bridging from the returned Core Foundation types.
これは、CFStream
を呼び出してその返されるCore Foundation型にブリッジすることに対する便宜メソッドです。
func CFStreamCreateBoundPair (CFAllocator!, UnsafeMutablePointer<Unmanaged<CFReadStream>?>!, UnsafeMutablePointer<Unmanaged<CFWriteStream>?>!, CFIndex)