Documentation
¶
Index ¶
- Variables
- func RegisterInstallappServer(s *grpc.Server, srv InstallappServer)
- type InstallAppRequest
- func (*InstallAppRequest) Descriptor() ([]byte, []int)deprecated
- func (x *InstallAppRequest) GetAppContext() string
- func (*InstallAppRequest) ProtoMessage()
- func (x *InstallAppRequest) ProtoReflect() protoreflect.Message
- func (x *InstallAppRequest) Reset()
- func (x *InstallAppRequest) String() string
- type InstallAppResponse
- func (*InstallAppResponse) Descriptor() ([]byte, []int)deprecated
- func (x *InstallAppResponse) GetAppContextInstallMessage() string
- func (x *InstallAppResponse) GetAppContextInstalled() bool
- func (*InstallAppResponse) ProtoMessage()
- func (x *InstallAppResponse) ProtoReflect() protoreflect.Message
- func (x *InstallAppResponse) Reset()
- func (x *InstallAppResponse) String() string
- type InstallappClient
- type InstallappServer
- type ReadAppContextRequest
- func (*ReadAppContextRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ReadAppContextRequest) GetAppContext() string
- func (*ReadAppContextRequest) ProtoMessage()
- func (x *ReadAppContextRequest) ProtoReflect() protoreflect.Message
- func (x *ReadAppContextRequest) Reset()
- func (x *ReadAppContextRequest) String() string
- type ReadAppContextResponse
- func (*ReadAppContextResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ReadAppContextResponse) GetAppContextReadMessage() string
- func (x *ReadAppContextResponse) GetAppContextReadSuccessful() bool
- func (*ReadAppContextResponse) ProtoMessage()
- func (x *ReadAppContextResponse) ProtoReflect() protoreflect.Message
- func (x *ReadAppContextResponse) Reset()
- func (x *ReadAppContextResponse) String() string
- type UnimplementedInstallappServer
- func (*UnimplementedInstallappServer) InstallApp(context.Context, *InstallAppRequest) (*InstallAppResponse, error)
- func (*UnimplementedInstallappServer) ReadAppContext(context.Context, *ReadAppContextRequest) (*ReadAppContextResponse, error)
- func (*UnimplementedInstallappServer) UninstallApp(context.Context, *UninstallAppRequest) (*UninstallAppResponse, error)
- type UninstallAppRequest
- func (*UninstallAppRequest) Descriptor() ([]byte, []int)deprecated
- func (x *UninstallAppRequest) GetAppContext() string
- func (*UninstallAppRequest) ProtoMessage()
- func (x *UninstallAppRequest) ProtoReflect() protoreflect.Message
- func (x *UninstallAppRequest) Reset()
- func (x *UninstallAppRequest) String() string
- type UninstallAppResponse
- func (*UninstallAppResponse) Descriptor() ([]byte, []int)deprecated
- func (x *UninstallAppResponse) GetAppContextUninstallMessage() string
- func (x *UninstallAppResponse) GetAppContextUninstalled() bool
- func (*UninstallAppResponse) ProtoMessage()
- func (x *UninstallAppResponse) ProtoReflect() protoreflect.Message
- func (x *UninstallAppResponse) Reset()
- func (x *UninstallAppResponse) String() string
Constants ¶
This section is empty.
Variables ¶
var File_installapp_proto protoreflect.FileDescriptor
Functions ¶
func RegisterInstallappServer ¶
func RegisterInstallappServer(s *grpc.Server, srv InstallappServer)
Types ¶
type InstallAppRequest ¶
type InstallAppRequest struct { AppContext string `protobuf:"bytes,1,opt,name=app_context,json=appContext,proto3" json:"app_context,omitempty"` // contains filtered or unexported fields }
func (*InstallAppRequest) Descriptor
deprecated
func (*InstallAppRequest) Descriptor() ([]byte, []int)
Deprecated: Use InstallAppRequest.ProtoReflect.Descriptor instead.
func (*InstallAppRequest) GetAppContext ¶
func (x *InstallAppRequest) GetAppContext() string
func (*InstallAppRequest) ProtoMessage ¶
func (*InstallAppRequest) ProtoMessage()
func (*InstallAppRequest) ProtoReflect ¶
func (x *InstallAppRequest) ProtoReflect() protoreflect.Message
func (*InstallAppRequest) Reset ¶
func (x *InstallAppRequest) Reset()
func (*InstallAppRequest) String ¶
func (x *InstallAppRequest) String() string
type InstallAppResponse ¶
type InstallAppResponse struct { AppContextInstalled bool `protobuf:"varint,1,opt,name=app_context_installed,json=appContextInstalled,proto3" json:"app_context_installed,omitempty"` AppContextInstallMessage string `` /* 137-byte string literal not displayed */ // contains filtered or unexported fields }
func (*InstallAppResponse) Descriptor
deprecated
func (*InstallAppResponse) Descriptor() ([]byte, []int)
Deprecated: Use InstallAppResponse.ProtoReflect.Descriptor instead.
func (*InstallAppResponse) GetAppContextInstallMessage ¶
func (x *InstallAppResponse) GetAppContextInstallMessage() string
func (*InstallAppResponse) GetAppContextInstalled ¶
func (x *InstallAppResponse) GetAppContextInstalled() bool
func (*InstallAppResponse) ProtoMessage ¶
func (*InstallAppResponse) ProtoMessage()
func (*InstallAppResponse) ProtoReflect ¶
func (x *InstallAppResponse) ProtoReflect() protoreflect.Message
func (*InstallAppResponse) Reset ¶
func (x *InstallAppResponse) Reset()
func (*InstallAppResponse) String ¶
func (x *InstallAppResponse) String() string
type InstallappClient ¶
type InstallappClient interface { // Sync InstallApp(ctx context.Context, in *InstallAppRequest, opts ...grpc.CallOption) (*InstallAppResponse, error) UninstallApp(ctx context.Context, in *UninstallAppRequest, opts ...grpc.CallOption) (*UninstallAppResponse, error) ReadAppContext(ctx context.Context, in *ReadAppContextRequest, opts ...grpc.CallOption) (*ReadAppContextResponse, error) }
InstallappClient is the client API for Installapp service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewInstallappClient ¶
func NewInstallappClient(cc grpc.ClientConnInterface) InstallappClient
type InstallappServer ¶
type InstallappServer interface { // Sync InstallApp(context.Context, *InstallAppRequest) (*InstallAppResponse, error) UninstallApp(context.Context, *UninstallAppRequest) (*UninstallAppResponse, error) ReadAppContext(context.Context, *ReadAppContextRequest) (*ReadAppContextResponse, error) }
InstallappServer is the server API for Installapp service.
type ReadAppContextRequest ¶
type ReadAppContextRequest struct { AppContext string `protobuf:"bytes,1,opt,name=app_context,json=appContext,proto3" json:"app_context,omitempty"` // contains filtered or unexported fields }
func (*ReadAppContextRequest) Descriptor
deprecated
func (*ReadAppContextRequest) Descriptor() ([]byte, []int)
Deprecated: Use ReadAppContextRequest.ProtoReflect.Descriptor instead.
func (*ReadAppContextRequest) GetAppContext ¶
func (x *ReadAppContextRequest) GetAppContext() string
func (*ReadAppContextRequest) ProtoMessage ¶
func (*ReadAppContextRequest) ProtoMessage()
func (*ReadAppContextRequest) ProtoReflect ¶
func (x *ReadAppContextRequest) ProtoReflect() protoreflect.Message
func (*ReadAppContextRequest) Reset ¶
func (x *ReadAppContextRequest) Reset()
func (*ReadAppContextRequest) String ¶
func (x *ReadAppContextRequest) String() string
type ReadAppContextResponse ¶
type ReadAppContextResponse struct { AppContextReadSuccessful bool `` /* 138-byte string literal not displayed */ AppContextReadMessage string `` /* 128-byte string literal not displayed */ // contains filtered or unexported fields }
func (*ReadAppContextResponse) Descriptor
deprecated
func (*ReadAppContextResponse) Descriptor() ([]byte, []int)
Deprecated: Use ReadAppContextResponse.ProtoReflect.Descriptor instead.
func (*ReadAppContextResponse) GetAppContextReadMessage ¶
func (x *ReadAppContextResponse) GetAppContextReadMessage() string
func (*ReadAppContextResponse) GetAppContextReadSuccessful ¶
func (x *ReadAppContextResponse) GetAppContextReadSuccessful() bool
func (*ReadAppContextResponse) ProtoMessage ¶
func (*ReadAppContextResponse) ProtoMessage()
func (*ReadAppContextResponse) ProtoReflect ¶
func (x *ReadAppContextResponse) ProtoReflect() protoreflect.Message
func (*ReadAppContextResponse) Reset ¶
func (x *ReadAppContextResponse) Reset()
func (*ReadAppContextResponse) String ¶
func (x *ReadAppContextResponse) String() string
type UnimplementedInstallappServer ¶
type UnimplementedInstallappServer struct { }
UnimplementedInstallappServer can be embedded to have forward compatible implementations.
func (*UnimplementedInstallappServer) InstallApp ¶
func (*UnimplementedInstallappServer) InstallApp(context.Context, *InstallAppRequest) (*InstallAppResponse, error)
func (*UnimplementedInstallappServer) ReadAppContext ¶
func (*UnimplementedInstallappServer) ReadAppContext(context.Context, *ReadAppContextRequest) (*ReadAppContextResponse, error)
func (*UnimplementedInstallappServer) UninstallApp ¶
func (*UnimplementedInstallappServer) UninstallApp(context.Context, *UninstallAppRequest) (*UninstallAppResponse, error)
type UninstallAppRequest ¶
type UninstallAppRequest struct { AppContext string `protobuf:"bytes,1,opt,name=app_context,json=appContext,proto3" json:"app_context,omitempty"` // contains filtered or unexported fields }
func (*UninstallAppRequest) Descriptor
deprecated
func (*UninstallAppRequest) Descriptor() ([]byte, []int)
Deprecated: Use UninstallAppRequest.ProtoReflect.Descriptor instead.
func (*UninstallAppRequest) GetAppContext ¶
func (x *UninstallAppRequest) GetAppContext() string
func (*UninstallAppRequest) ProtoMessage ¶
func (*UninstallAppRequest) ProtoMessage()
func (*UninstallAppRequest) ProtoReflect ¶
func (x *UninstallAppRequest) ProtoReflect() protoreflect.Message
func (*UninstallAppRequest) Reset ¶
func (x *UninstallAppRequest) Reset()
func (*UninstallAppRequest) String ¶
func (x *UninstallAppRequest) String() string
type UninstallAppResponse ¶
type UninstallAppResponse struct { AppContextUninstalled bool `` /* 127-byte string literal not displayed */ AppContextUninstallMessage string `` /* 143-byte string literal not displayed */ // contains filtered or unexported fields }
func (*UninstallAppResponse) Descriptor
deprecated
func (*UninstallAppResponse) Descriptor() ([]byte, []int)
Deprecated: Use UninstallAppResponse.ProtoReflect.Descriptor instead.
func (*UninstallAppResponse) GetAppContextUninstallMessage ¶
func (x *UninstallAppResponse) GetAppContextUninstallMessage() string
func (*UninstallAppResponse) GetAppContextUninstalled ¶
func (x *UninstallAppResponse) GetAppContextUninstalled() bool
func (*UninstallAppResponse) ProtoMessage ¶
func (*UninstallAppResponse) ProtoMessage()
func (*UninstallAppResponse) ProtoReflect ¶
func (x *UninstallAppResponse) ProtoReflect() protoreflect.Message
func (*UninstallAppResponse) Reset ¶
func (x *UninstallAppResponse) Reset()
func (*UninstallAppResponse) String ¶
func (x *UninstallAppResponse) String() string