Documentation ¶
Overview ¶
Package shimlessrma contains Tast test services that exercise core shimlessrma-related features.
Index ¶
- Variables
- func RegisterAppServiceServer(s *grpc.Server, srv AppServiceServer)
- type AppServiceClient
- type AppServiceServer
- type NewShimlessRMARequest
- func (*NewShimlessRMARequest) Descriptor() ([]byte, []int)deprecated
- func (x *NewShimlessRMARequest) GetManifestKey() string
- func (*NewShimlessRMARequest) ProtoMessage()
- func (x *NewShimlessRMARequest) ProtoReflect() protoreflect.Message
- func (x *NewShimlessRMARequest) Reset()
- func (x *NewShimlessRMARequest) String() string
- type UnimplementedAppServiceServer
- func (*UnimplementedAppServiceServer) CloseShimlessRMA(context.Context, *empty.Empty) (*empty.Empty, error)
- func (*UnimplementedAppServiceServer) NewShimlessRMA(context.Context, *NewShimlessRMARequest) (*empty.Empty, error)
- func (*UnimplementedAppServiceServer) TestWelcomeAndCancel(context.Context, *empty.Empty) (*empty.Empty, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var File_app_service_proto protoreflect.FileDescriptor
Functions ¶
func RegisterAppServiceServer ¶
func RegisterAppServiceServer(s *grpc.Server, srv AppServiceServer)
Types ¶
type AppServiceClient ¶
type AppServiceClient interface { // Creates ShimlessRMA. NewShimlessRMA(ctx context.Context, in *NewShimlessRMARequest, opts ...grpc.CallOption) (*empty.Empty, error) // Closes and releases the resources obtained by New. CloseShimlessRMA(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error) // Tests welcome page is loaded and then cancel it. TestWelcomeAndCancel(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error) }
AppServiceClient is the client API for AppService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewAppServiceClient ¶
func NewAppServiceClient(cc grpc.ClientConnInterface) AppServiceClient
type AppServiceServer ¶
type AppServiceServer interface { // Creates ShimlessRMA. NewShimlessRMA(context.Context, *NewShimlessRMARequest) (*empty.Empty, error) // Closes and releases the resources obtained by New. CloseShimlessRMA(context.Context, *empty.Empty) (*empty.Empty, error) // Tests welcome page is loaded and then cancel it. TestWelcomeAndCancel(context.Context, *empty.Empty) (*empty.Empty, error) }
AppServiceServer is the server API for AppService service.
type NewShimlessRMARequest ¶
type NewShimlessRMARequest struct { ManifestKey string `protobuf:"bytes,1,opt,name=manifestKey,proto3" json:"manifestKey,omitempty"` // contains filtered or unexported fields }
func (*NewShimlessRMARequest) Descriptor
deprecated
func (*NewShimlessRMARequest) Descriptor() ([]byte, []int)
Deprecated: Use NewShimlessRMARequest.ProtoReflect.Descriptor instead.
func (*NewShimlessRMARequest) GetManifestKey ¶
func (x *NewShimlessRMARequest) GetManifestKey() string
func (*NewShimlessRMARequest) ProtoMessage ¶
func (*NewShimlessRMARequest) ProtoMessage()
func (*NewShimlessRMARequest) ProtoReflect ¶
func (x *NewShimlessRMARequest) ProtoReflect() protoreflect.Message
func (*NewShimlessRMARequest) Reset ¶
func (x *NewShimlessRMARequest) Reset()
func (*NewShimlessRMARequest) String ¶
func (x *NewShimlessRMARequest) String() string
type UnimplementedAppServiceServer ¶
type UnimplementedAppServiceServer struct { }
UnimplementedAppServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedAppServiceServer) CloseShimlessRMA ¶
func (*UnimplementedAppServiceServer) NewShimlessRMA ¶
func (*UnimplementedAppServiceServer) NewShimlessRMA(context.Context, *NewShimlessRMARequest) (*empty.Empty, error)
func (*UnimplementedAppServiceServer) TestWelcomeAndCancel ¶
Click to show internal directories.
Click to hide internal directories.