blob: 6984f24daaee5629b82c3bae1aa6a9a82233faa5 (
plain) (
blame)
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
57
58
59
60
61
|
<?php
namespace React\Tests\Stream\Stub;
use Evenement\EventEmitter;
use React\Stream\ReadableStreamInterface;
use React\Stream\WritableStreamInterface;
use React\Stream\Util;
class ReadableStreamStub extends EventEmitter implements ReadableStreamInterface
{
public $readable = true;
public $paused = false;
public function isReadable()
{
return true;
}
// trigger data event
public function write($data)
{
$this->emit('data', array($data));
}
// trigger error event
public function error($error)
{
$this->emit('error', array($error));
}
// trigger end event
public function end()
{
$this->emit('end', array());
}
public function pause()
{
$this->paused = true;
}
public function resume()
{
$this->paused = false;
}
public function close()
{
$this->readable = false;
$this->emit('close');
}
public function pipe(WritableStreamInterface $dest, array $options = array())
{
Util::pipe($this, $dest, $options);
return $dest;
}
}
|