Documentation ¶
Overview ¶
Package polaris api defines the interfaces for the external APIs.
Index ¶
- func NewSDKContext() (api.SDKContext, error)
- func NewSDKContextByAddress(address ...string) (api.SDKContext, error)
- func NewSDKContextByConfig(cfg config.Configuration) (api.SDKContext, error)
- type ConfigAPI
- type ConfigFile
- type ConfigGroupAPI
- type ConsumerAPI
- func NewConsumerAPI() (ConsumerAPI, error)
- func NewConsumerAPIByAddress(address ...string) (ConsumerAPI, error)
- func NewConsumerAPIByConfig(cfg config.Configuration) (ConsumerAPI, error)
- func NewConsumerAPIByContext(context api.SDKContext) ConsumerAPI
- func NewConsumerAPIByFile(path string) (ConsumerAPI, error)
- type GetAllInstancesRequest
- type GetInstancesRequest
- type GetOneInstanceRequest
- type GetServiceRuleRequest
- type GetServicesRequest
- type InitCalleeServiceRequest
- type InstanceDeRegisterRequest
- type InstanceHeartbeatRequest
- type InstanceRegisterRequest
- type LimitAPI
- type ProcessLoadBalanceRequest
- type ProcessRoutersRequest
- type ProviderAPI
- func NewProviderAPI() (ProviderAPI, error)
- func NewProviderAPIByAddress(address ...string) (ProviderAPI, error)
- func NewProviderAPIByConfig(cfg config.Configuration) (ProviderAPI, error)
- func NewProviderAPIByContext(context api.SDKContext) ProviderAPI
- func NewProviderAPIByFile(path string) (ProviderAPI, error)
- type QuotaFuture
- type QuotaRequest
- type RouterAPI
- type ServiceCallResult
- type WatchAllInstancesRequest
- type WatchAllServicesRequest
- type WatchServiceRequest
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewSDKContext ¶ added in v1.2.0
func NewSDKContext() (api.SDKContext, error)
NewSDKContext 创建SDK上下文
func NewSDKContextByAddress ¶ added in v1.2.0
func NewSDKContextByAddress(address ...string) (api.SDKContext, error)
NewSDKContextByAddress 根据address创建SDK上下文
func NewSDKContextByConfig ¶ added in v1.2.0
func NewSDKContextByConfig(cfg config.Configuration) (api.SDKContext, error)
NewSDKContextByConfig 根据配置创建SDK上下文
Types ¶
type ConfigAPI ¶
type ConfigAPI interface { api.SDKOwner // GetConfigFile obtaining the configuration file GetConfigFile(namespace, fileGroup, fileName string) (ConfigFile, error) // CreateConfigFile create configuration file CreateConfigFile(namespace, fileGroup, fileName, content string) error // UpdateConfigFile update configuration file UpdateConfigFile(namespace, fileGroup, fileName, content string) error // PublishConfigFile publish configuration file PublishConfigFile(namespace, fileGroup, fileName string) error }
ConfigAPI api for configuration files.
func NewConfigAPIByConfig ¶
func NewConfigAPIByConfig(cfg config.Configuration) (ConfigAPI, error)
NewConfigAPIByConfig 通过配置对象获取配置中心 API
func NewConfigAPIByContext ¶
func NewConfigAPIByContext(context api.SDKContext) ConfigAPI
NewConfigAPIByContext 通过上下文对象获取配置中心 API
func NewConfigAPIByFile ¶
NewConfigAPIByFile 通过配置文件获取配置中心 API
type ConfigGroupAPI ¶ added in v1.5.6
type ConfigGroupAPI interface { api.SDKOwner // GetConfigGroup . GetConfigGroup(namesapce, group string) (model.ConfigFileGroup, error) }
ConfigGroupAPI .
func NewConfigGroupAPI ¶ added in v1.5.6
func NewConfigGroupAPI() (ConfigGroupAPI, error)
NewConfigGroupAPI 获取配置中心 API
func NewConfigGroupAPIByConfig ¶ added in v1.5.6
func NewConfigGroupAPIByConfig(cfg config.Configuration) (ConfigGroupAPI, error)
NewConfigAPIByConfig 通过配置对象获取配置中心 API
func NewConfigGroupAPIByContext ¶ added in v1.5.6
func NewConfigGroupAPIByContext(context api.SDKContext) ConfigGroupAPI
NewConfigAPIByContext 通过上下文对象获取配置中心 API
func NewConfigGroupAPIByFile ¶ added in v1.5.6
func NewConfigGroupAPIByFile(path string) (ConfigGroupAPI, error)
NewConfigAPIByFile 通过配置文件获取配置中心 API
type ConsumerAPI ¶
type ConsumerAPI interface { api.SDKOwner // GetOneInstance 同步获取单个服务 GetOneInstance(req *GetOneInstanceRequest) (*model.OneInstanceResponse, error) // GetInstances 同步获取可用的服务列表 GetInstances(req *GetInstancesRequest) (*model.InstancesResponse, error) // GetAllInstances 同步获取完整的服务列表 GetAllInstances(req *GetAllInstancesRequest) (*model.InstancesResponse, error) // GetRouteRule 同步获取服务路由规则 GetRouteRule(req *GetServiceRuleRequest) (*model.ServiceRuleResponse, error) // UpdateServiceCallResult 上报服务调用结果 UpdateServiceCallResult(req *ServiceCallResult) error // WatchService 订阅服务消息 WatchService(req *WatchServiceRequest) (*model.WatchServiceResponse, error) // GetServices 根据业务同步获取批量服务 GetServices(req *GetServicesRequest) (*model.ServicesResponse, error) // InitCalleeService 初始化服务运行中需要的被调服务 InitCalleeService(req *InitCalleeServiceRequest) error // WatchAllInstances 监听服务实例变更事件 WatchAllInstances(req *WatchAllInstancesRequest) (*model.WatchAllInstancesResponse, error) // WatchAllServices 监听服务列表变更事件 WatchAllServices(req *WatchAllServicesRequest) (*model.WatchAllServicesResponse, error) // Destroy 销毁API,销毁后无法再进行调用 Destroy() }
ConsumerAPI 主调端API方法.
func NewConsumerAPIByAddress ¶
func NewConsumerAPIByAddress(address ...string) (ConsumerAPI, error)
NewConsumerAPIByAddress 创建调用者API
func NewConsumerAPIByConfig ¶
func NewConsumerAPIByConfig(cfg config.Configuration) (ConsumerAPI, error)
NewConsumerAPIByConfig 创建调用者API
func NewConsumerAPIByContext ¶
func NewConsumerAPIByContext(context api.SDKContext) ConsumerAPI
NewConsumerAPIByContext 创建调用者API
func NewConsumerAPIByFile ¶
func NewConsumerAPIByFile(path string) (ConsumerAPI, error)
NewConsumerAPIByFile 创建调用者API
type GetAllInstancesRequest ¶
type GetAllInstancesRequest api.GetAllInstancesRequest
GetAllInstancesRequest is the request struct for GetAllInstances.
type GetInstancesRequest ¶
type GetInstancesRequest api.GetInstancesRequest
GetInstancesRequest is the request struct for GetInstances.
type GetOneInstanceRequest ¶
type GetOneInstanceRequest api.GetOneInstanceRequest
GetOneInstanceRequest is the request struct for GetOneInstance.
type GetServiceRuleRequest ¶
type GetServiceRuleRequest api.GetServiceRuleRequest
GetServiceRuleRequest is the request struct for GetServiceRule.
type GetServicesRequest ¶
type GetServicesRequest api.GetServicesRequest
GetServicesRequest is the request struct for GetServices.
type InitCalleeServiceRequest ¶
type InitCalleeServiceRequest api.InitCalleeServiceRequest
InitCalleeServiceRequest is the request struct for InitCalleeService.
type InstanceDeRegisterRequest ¶
type InstanceDeRegisterRequest api.InstanceDeRegisterRequest
InstanceDeRegisterRequest 实例注销请求.
type InstanceHeartbeatRequest ¶
type InstanceHeartbeatRequest api.InstanceHeartbeatRequest
InstanceHeartbeatRequest 实例心跳请求.
type InstanceRegisterRequest ¶
type InstanceRegisterRequest api.InstanceRegisterRequest
InstanceRegisterRequest 实例注册请求.
type LimitAPI ¶
type LimitAPI interface { api.SDKOwner // GetQuota the interface obtains only one quota at a time GetQuota(request QuotaRequest) (QuotaFuture, error) // Destroy the api is destroyed and cannot be called again Destroy() }
LimitAPI 限流相关的API相关接口.
func NewLimitAPIByAddress ¶
NewLimitAPIByAddress 通过地址创建SDK LimitAPI对象
func NewLimitAPIByConfig ¶
func NewLimitAPIByConfig(cfg config.Configuration) (LimitAPI, error)
NewLimitAPIByConfig 通过配置对象创建SDK LimitAPI对象
func NewLimitAPIByContext ¶
func NewLimitAPIByContext(context api.SDKContext) LimitAPI
NewLimitAPIByContext 通过上下文创建SDK LimitAPI对象
func NewLimitAPIByFile ¶
NewLimitAPIByFile 通过配置文件创建SDK LimitAPI对象
type ProcessLoadBalanceRequest ¶ added in v1.2.0
type ProcessLoadBalanceRequest struct {
model.ProcessLoadBalanceRequest
}
ProcessLoadBalanceRequest process load balancer to get the target instances
type ProcessRoutersRequest ¶ added in v1.2.0
type ProcessRoutersRequest struct {
model.ProcessRoutersRequest
}
ProcessRoutersRequest process routers to filter instances
type ProviderAPI ¶
type ProviderAPI interface { api.SDKOwner // RegisterInstance // minimum supported version of polaris-server is v1.10.0 RegisterInstance(instance *InstanceRegisterRequest) (*model.InstanceRegisterResponse, error) // Register // 同步注册服务,服务注册成功后会填充instance中的InstanceID字段 // 用户可保持该instance对象用于反注册和心跳上报 Register(instance *InstanceRegisterRequest) (*model.InstanceRegisterResponse, error) // Deregister // 同步反注册服务 Deregister(instance *InstanceDeRegisterRequest) error // Deprecated: Use RegisterInstance instead. // Heartbeat // 心跳上报 Heartbeat(instance *InstanceHeartbeatRequest) error // Destroy // 销毁API,销毁后无法再进行调用 Destroy() }
ProviderAPI CL5服务端API的主接口.
func NewProviderAPI ¶
func NewProviderAPI() (ProviderAPI, error)
NewProviderAPI 通过以默认域名为埋点server的默认配置创建ProviderAPI
func NewProviderAPIByAddress ¶
func NewProviderAPIByAddress(address ...string) (ProviderAPI, error)
NewProviderAPIByAddress 通过address创建ProviderAPI
func NewProviderAPIByConfig ¶
func NewProviderAPIByConfig(cfg config.Configuration) (ProviderAPI, error)
NewProviderAPIByConfig 通过配置对象创建SDK ProviderAPI对象
func NewProviderAPIByContext ¶
func NewProviderAPIByContext(context api.SDKContext) ProviderAPI
NewProviderAPIByContext 通过上下文创建SDK ProviderAPI对象
func NewProviderAPIByFile ¶
func NewProviderAPIByFile(path string) (ProviderAPI, error)
NewProviderAPIByFile 通过配置文件创建SDK ProviderAPI对象
type QuotaRequest ¶
type QuotaRequest api.QuotaRequest
QuotaRequest rate limiter.
func NewQuotaRequest ¶
func NewQuotaRequest() QuotaRequest
NewQuotaRequest example create a quota query request.
type RouterAPI ¶ added in v1.2.0
type RouterAPI interface { api.SDKOwner // ProcessRouters process routers to filter instances ProcessRouters(*ProcessRoutersRequest) (*model.InstancesResponse, error) // ProcessLoadBalance process load balancer to get the target instances ProcessLoadBalance(*ProcessLoadBalanceRequest) (*model.OneInstanceResponse, error) }
RouterAPI routing api methods
func NewRouterAPI ¶ added in v1.2.0
NewRouterAPI 通过以默认域名为埋点server的默认配置创建RouterAPI
func NewRouterAPIByAddress ¶ added in v1.2.0
NewRouterAPIByAddress 通过address创建RouterAPI
func NewRouterAPIByConfig ¶ added in v1.2.0
func NewRouterAPIByConfig(cfg config.Configuration) (RouterAPI, error)
NewRouterAPIByConfig 通过配置对象创建SDK RouterAPI对象
func NewRouterAPIByContext ¶ added in v1.2.0
func NewRouterAPIByContext(context api.SDKContext) RouterAPI
NewRouterAPIByContext 通过上下文创建SDK RouterAPI对象
func NewRouterAPIByFile ¶ added in v1.2.0
NewRouterAPIByFile 通过配置文件创建SDK RouterAPI对象
type ServiceCallResult ¶
type ServiceCallResult api.ServiceCallResult
ServiceCallResult is the response struct for ServiceCall.
type WatchAllInstancesRequest ¶ added in v1.4.0
type WatchAllInstancesRequest api.WatchAllInstancesRequest
WatchAllInstancesRequest is the request to watch instances
type WatchAllServicesRequest ¶ added in v1.4.1
type WatchAllServicesRequest api.WatchAllServicesRequest
WatchAllServicesRequest is the request to watch services
type WatchServiceRequest ¶
type WatchServiceRequest api.WatchServiceRequest
WatchServiceRequest is the request struct for WatchService.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package api is the core API of polaris-go, which provides the basic functions of service discovery and.
|
Package api is the core API of polaris-go, which provides the basic functions of service discovery and. |
benchmark
|
|
flags
Package flags provide convenience types and routines to accept specific types of flag values on the command line.
|
Package flags provide convenience types and routines to accept specific types of flag values on the command line. |
stats
Package stats tracks the statistics associated with benchmark runs.
|
Package stats tracks the statistics associated with benchmark runs. |
examples
|
|
pkg
|
|
algorithm/hash
Package hash provides hash functions
|
Package hash provides hash functions |
algorithm/rand
Package rand random digit
|
Package rand random digit |
algorithm/search
Package search .
|
Package search . |
clock
Package clock provides a global clock.
|
Package clock provides a global clock. |
network
Package network provides network related functions.
|
Package network provides network related functions. |
version
Package version provides version information for the polaris-go project.
|
Package version provides version information for the polaris-go project. |
plugin
|
|
ratelimiter/common
Package common .
|
Package common . |
test
|
|
tools
Module
|