Lines Matching refs:async
143 list($buffer, $async) = AsyncReadStream::create();
145 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);
151 list($buffer, $async) = AsyncReadStream::create(['buffer' => $buf]);
153 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);
158 list($buffer, $async) = AsyncReadStream::create(['max_buffer' => 0]);
160 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);
165 list($buffer, $async) = AsyncReadStream::create(['max_buffer' => 5]);
167 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);
176 list($buffer, $async) = AsyncReadStream::create([
185 $this->assertInstanceOf('GuzzleHttp\Stream\AsyncReadStream', $async);