-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOutputStream.php
More file actions
56 lines (49 loc) · 1.39 KB
/
OutputStream.php
File metadata and controls
56 lines (49 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace WebStream\IO;
/**
* OutputStream
* @author Ryuichi TANAKA.
* @since 2016/02/24
* @version 0.7
*/
abstract class OutputStream
{
/**
* @var mixed 出力ストリーム
*/
protected $stream;
/**
* constructor
* @param mixed $stream 出力ストリーム
*/
public function __construct($stream)
{
$this->stream = $stream;
}
/**
* destructor
*/
public function __destruct()
{
$this->close();
}
/**
* 出力ストリームに書き出す
* @param mixed $buf 出力データ
* @param int|null $off データ開始位置
* @param int|null $len 書き出すバイト数
* @throws WebStream\Exception\Extend\IOException
*/
abstract public function write($buf, int $off = null, int $len = null);
/**
* バッファリングしているすべての出力バイトを書き出し、出力ストリームを閉じる
* @throws WebStream\Exception\Extend\IOException
*/
abstract public function close();
/**
* バッファリングしているすべての出力バイトを出力ストリームを閉じずに強制的に書き出す
* writeを実行した時点では書き出されておらず、flushした時点ですべて書き出す
* @throws WebStream\Exception\Extend\IOException
*/
abstract public function flush();
}