## Coroutine\\Client
Coroutine\Client提供了`TCP`、`UDP`、`UnixSocket`传输协议的`Socket`客户端封装代码,使用时仅需new Swoole\Coroutine\Client即可。
* `Coroutine\Client`底层实现协程调度,业务层无需感知
* 使用方法和`Client`同步模式方法完全一致
* `connect`超时设置同时作用于`Connect`和`Recv`、`Send`超时
* 除了正常的调用外,`Coroutine\Client`还支持并行请求
<br>
## 继承关系
Coroutine\Client与Client不是继承关系,但绝大部分Client提供的方法均可在Coroutine\Client中使用。
在Coroutine\Client中可以使用set方法设置配置选项,使用方法和与Client->set完全一致
<br>
## 使用实例
~~~
use Swoole;
$client = new Coroutine\Client(SWOOLE_SOCK_TCP);
if (!$client->connect('127.0.0.1', 9501, 0.5))
{
exit("connect failed. Error: {$client->errCode}\n");
}
$client->send("hello world\n");
echo $client->recv();
$client->close();
~~~
<br>
## 协议处理
协程客户端也支持长度和`EOF`协议处理,设置方法与[Client](https://wiki.swoole.com/wiki/page/p-client_setting.html)完全一致。
~~~
use Swoole;
$client = new Coroutine\Client(SWOOLE_SOCK_TCP);
$client->set(array(
'open_length_check' => 1,
'package_length_type' => 'N',
'package_length_offset' => 0, //第N个字节是包长度的值
'package_body_offset' => 4, //第几个字节开始计算长度
'package_max_length' => 2000000, //协议最大长度
));
~~~
- 序章
- 1.环境搭建
- PHP7源码编译安装
- Swoole源码编译安装
- Mysql5.7源码安装
- Redis安装
- 2.搭建Echo服务器
- 3.Server服务器
- 函数列表
- Server::__construct
- Server->set
- Server->on
- Server->start
- Server->send
- WebSocket
- Server->push
- Server->exist
- Server::pack
- Server::unpack
- Server->disconnect
- Server->isEstablished
- 配置选项
- reactor_num
- worker_num
- max_request
- max_conn
- daemonize
- backlog
- log_file
- log_level
- upload_tmp_dir
- http_parse_post
- document_root
- http_compression
- 事件回调函数
- onStart
- onWorkerStart
- onConnect
- onReceive
- onPacket
- onRequest
- 请求Request
- Http\Request->$header
- Http\Request->$server
- Http\Request->$get
- Http\Request->$post
- Http\Request->$cookie
- Http\Request->$files
- Http\Request->rawContent
- Http\Request->getData
- 响应Response
- Http\Response->header
- Http\Response->cookie
- Http\Response->status
- Http\Response->redirect
- Http\Response->write
- Http\Response->sendfile
- Http\Response->end
- Http\Response->detach
- Http\Response::create
- onClose
- onOpen
- onMessage
- 创建服务器
- TCP服务器
- UDP服务器
- HTTP服务器
- WebSocket服务器
- 4.定时器Timer
- 5.进程Process
- Process::__construct
- Process->start
- Process->name
- Process->exec
- Process->write
- Process->read
- Process->setTimeout
- Process->setBlocking
- Process->useQueue
- Process->statQueue
- Process->freeQueue
- Process->push
- Process->pop
- Process->close
- Process->exit
- Process::kill
- Process::wait
- Process::daemon
- Process::signal
- 6.内存Memory
- Table
- Table->__construct
- Table->column
- Table->create
- Table->set
- Table->incr
- Table->decr
- Table->get
- Table->exist
- Table->count
- Table->del
- Channel
- Channel->__construct
- Channel->push
- Channel->pop
- Channel->stats
- 7.协程Coroutine
- Coroutine
- Coroutine::list
- Coroutine::set
- Coroutine::stats
- Coroutine::create
- Coroutine::exist
- Coroutine::getCid
- Coroutine::getContext
- Coroutine::defer
- Coroutine::getBackTrace
- Coroutine::yield
- Coroutine::resume
- Coroutine::fread
- Coroutine::fgets
- Coroutine::fwrite
- Coroutine::sleep
- Coroutine::gethostbyname
- Coroutine::getaddrinfo
- Coroutine::exec
- Coroutine::readFile
- Coroutine::writeFile
- Coroutine::statvfs
- Coroutine::getPcid
- Coroutine\Channel
- Coroutine\Channel->__construct
- Coroutine\Channel->push
- Coroutine\Channel->pop
- Coroutine\Channel->stats
- Coroutine\Channel->close
- Coroutine\Channel->length
- Coroutine\Channel->isEmpty
- Coroutine\Channel->isFull
- Coroutine\Channel->$capacity
- Coroutine\Channel->$errCode
- Coroutine\Client
- Coroutine\Client->connect
- Coroutine\Client->send
- Coroutine\Client->recv
- Coroutine\Client->close
- Coroutine\Client->peek
- Coroutine\Client->set
- Coroutine\Http\Client
- Coroutine\Http\Client->get
- Coroutine\Http\Client->post
- 其他
- 并行和并发的区别
- 堆、栈、队列