mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-12-02 11:48:08 +08:00
Update consul.md
This commit is contained in:
parent
eee64a8e9c
commit
a1a50eeda3
63
zh/consul.md
63
zh/consul.md
@ -0,0 +1,63 @@
|
||||
# Consul 协程客户端
|
||||
|
||||
Hyperf 提供了一个 Consul 的协程客户端,由于 Consul 本身的 API 比较简单,也支持 HTTP 的请求方法,顾该组件仅对 API 进行了一些封装上的简化,基于 [hyperf/guzzle](https://github.com/hyperf-cloud/guzzle) 提供的协程 HTTP 客户端支持。
|
||||
|
||||
> `ConsulResponse` 类指的是 `Hyperf\Consul\ConsulResponse` 类
|
||||
|
||||
## KV
|
||||
|
||||
由 `Hyperf\Consul\KV` 实现 `Hyperf\Consul\KVInterface` 提供支持。
|
||||
|
||||
- get($key, array $options = []): ConsulResponse
|
||||
- put($key, $value, array $options = []): ConsulResponse
|
||||
- delete($key, array $options = []): ConsulResponse
|
||||
|
||||
## Agent
|
||||
|
||||
由 `Hyperf\Consul\Agent` 实现 `Hyperf\Consul\AgentInterface` 提供支持。
|
||||
|
||||
- checks(): ConsulResponse
|
||||
- services(): ConsulResponse
|
||||
- members(): ConsulResponse
|
||||
- self(): ConsulResponse
|
||||
- join($address, array $options = []): ConsulResponse
|
||||
- forceLeave($node): ConsulResponse
|
||||
- registerCheck($check): ConsulResponse
|
||||
- deregisterCheck($checkId): ConsulResponse
|
||||
- passCheck($checkId, array $options = []): ConsulResponse
|
||||
- warnCheck($checkId, array $options = []): ConsulResponse
|
||||
- failCheck($checkId, array $options = []): ConsulResponse
|
||||
- registerService($service): ConsulResponse
|
||||
- deregisterService($serviceId): ConsulResponse
|
||||
|
||||
## Catalog
|
||||
|
||||
由 `Hyperf\Consul\Catalog` 实现 `Hyperf\Consul\CatalogInterface` 提供支持。
|
||||
|
||||
- register($node): ConsulResponse
|
||||
- deregister($node): ConsulResponse
|
||||
- datacenters(): ConsulResponse
|
||||
- nodes(array $options = []): ConsulResponse
|
||||
- node($node, array $options = []): ConsulResponse
|
||||
- services(array $options = []): ConsulResponse
|
||||
- service($service, array $options = []): ConsulResponse
|
||||
|
||||
## Health
|
||||
|
||||
由 `Hyperf\Consul\Health` 实现 `Hyperf\Consul\HealthInterface` 提供支持。
|
||||
|
||||
- node($node, array $options = []): ConsulResponse
|
||||
- checks($service, array $options = []): ConsulResponse
|
||||
- service($service, array $options = []): ConsulResponse
|
||||
- state($state, array $options = []): ConsulResponse
|
||||
|
||||
## Session
|
||||
|
||||
由 `Hyperf\Consul\Session` 实现 `Hyperf\Consul\SessionInterface` 提供支持。
|
||||
|
||||
- create($body = null, array $options = []): ConsulResponse
|
||||
- destroy($sessionId, array $options = []): ConsulResponse
|
||||
- info($sessionId, array $options = []): ConsulResponse
|
||||
- node($node, array $options = []): ConsulResponse
|
||||
- all(array $options = []): ConsulResponse
|
||||
- renew($sessionId, array $options = []): ConsulResponse
|
Loading…
Reference in New Issue
Block a user