Type Method 型メソッド

outputStreamToBuffer:capacity:

Creates and returns an initialized output stream that can write to a provided buffer. ある初期化された出力ストリームを作成して返します、それは提供されたバッファへと書き込めるものです。

Declaration 宣言

+ (instancetype)outputStreamToBuffer:(uint8_t *)buffer 
                            capacity:(NSUInteger)capacity;

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に到達した場合、ストリームのもつstreamStatusNSStreamStatusAtEndを返します。

See Also 参照

Creating Streams ストリームを作成する