forked from TrueCloudLab/frostfs-node
35 lines
684 B
Go
35 lines
684 B
Go
|
package control
|
||
|
|
||
|
import (
|
||
|
"github.com/nspcc-dev/neofs-api-go/rpc/client"
|
||
|
"github.com/nspcc-dev/neofs-api-go/rpc/common"
|
||
|
)
|
||
|
|
||
|
const serviceName = "ircontrol.ControlService"
|
||
|
|
||
|
const (
|
||
|
rpcHealthCheck = "HealthCheck"
|
||
|
)
|
||
|
|
||
|
// HealthCheck executes ControlService.HealthCheck RPC.
|
||
|
func HealthCheck(
|
||
|
cli *client.Client,
|
||
|
req *HealthCheckRequest,
|
||
|
opts ...client.CallOption,
|
||
|
) (*HealthCheckResponse, error) {
|
||
|
wResp := &healthCheckResponseWrapper{
|
||
|
m: new(HealthCheckResponse),
|
||
|
}
|
||
|
|
||
|
wReq := &requestWrapper{
|
||
|
m: req,
|
||
|
}
|
||
|
|
||
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceName, rpcHealthCheck), wReq, wResp, opts...)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return wResp.m, nil
|
||
|
}
|