Shield.liverpc.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Code generated by protoc-gen-liverpc v0.1, DO NOT EDIT.
  2. // source: v1/Shield.proto
  3. package v1
  4. import context "context"
  5. import proto "github.com/golang/protobuf/proto"
  6. import "go-common/library/net/rpc/liverpc"
  7. var _ proto.Message // generate to suppress unused imports
  8. // ================
  9. // Shield Interface
  10. // ================
  11. type Shield interface {
  12. // * 是否是屏蔽内容
  13. // 用于房主启用过滤之后,查询弹幕内容是否命中关键字
  14. IsShieldContent(context.Context, *ShieldIsShieldContentReq) (*ShieldIsShieldContentResp, error)
  15. }
  16. // ======================
  17. // Shield Live Rpc Client
  18. // ======================
  19. type shieldRpcClient struct {
  20. client *liverpc.Client
  21. }
  22. // NewShieldRpcClient creates a Rpc client that implements the Shield interface.
  23. // It communicates using Rpc and can be configured with a custom HTTPClient.
  24. func NewShieldRpcClient(client *liverpc.Client) Shield {
  25. return &shieldRpcClient{
  26. client: client,
  27. }
  28. }
  29. func (c *shieldRpcClient) IsShieldContent(ctx context.Context, in *ShieldIsShieldContentReq) (*ShieldIsShieldContentResp, error) {
  30. out := new(ShieldIsShieldContentResp)
  31. err := doRpcRequest(ctx, c.client, 1, "Shield.is_shield_content", in, out)
  32. if err != nil {
  33. return nil, err
  34. }
  35. return out, nil
  36. }