Initializer
init(toBuffer:capacity:)
Returns an initialized output stream that can write to a provided buffer.
初期化された出力ストリームを返します、それは提供されたバッファへと書き込めるものです。
Parameters
パラメータ
buffer
The buffer the output stream will write to.
出力ストリームが書き込まれるバッファ。
capacity
The size of the buffer in bytes.
バイトでのバッファのサイズ。
Return Value
戻り値
An initialized output stream that can write to buffer
.
ある初期化された出力ストリーム、それはbuffer
へと書き込み可能なものです。
Discussion
議論
The stream must be opened before it can be used.
ストリームは、それが使われる前に開かれなければなりません。
When the number of bytes written to buffer
has reached capacity
, the stream’s streamStatus
will return NSStreamStatusAtEnd
.
buffer
へ書き込まれたバイト数がcapacity
に到達した場合、ストリームのもつstreamStatus
はNSStreamStatusAtEnd
を返します。
See Also
参照
Creating Streams
ストリームを作成する
class func toMemory() -> Self
Creates and returns an initialized output stream that will write stream data to memory.
初期化された出力ストリームを作成して返します、それはストリームデータをメモリへと書き込むものです。
init(toMemory: ())
Returns an initialized output stream that will write to memory.
初期化された出力ストリームを返します、それはメモリへと書き込むものです。
Related Documentation
関連文書
+ outputStreamToBuffer:capacity:
Creates and returns an initialized output stream that can write to a provided buffer.
ある初期化された出力ストリームを作成して返します、それは提供されたバッファへと書き込めるものです。