Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var FileService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "devtools_goma.FileService", HandlerType: (*FileServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "StoreFile", Handler: _FileService_StoreFile_Handler, }, { MethodName: "LookupFile", Handler: _FileService_LookupFile_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "file/file_service.proto", }
FileService_ServiceDesc is the grpc.ServiceDesc for FileService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
var File_file_file_service_proto protoreflect.FileDescriptor
Functions ¶
func RegisterFileServiceServer ¶
func RegisterFileServiceServer(s grpc.ServiceRegistrar, srv FileServiceServer)
Types ¶
type FileServiceClient ¶
type FileServiceClient interface { StoreFile(ctx context.Context, in *api.StoreFileReq, opts ...grpc.CallOption) (*api.StoreFileResp, error) LookupFile(ctx context.Context, in *api.LookupFileReq, opts ...grpc.CallOption) (*api.LookupFileResp, error) }
FileServiceClient is the client API for FileService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
func NewFileServiceClient ¶
func NewFileServiceClient(cc grpc.ClientConnInterface) FileServiceClient
type FileServiceServer ¶
type FileServiceServer interface { StoreFile(context.Context, *api.StoreFileReq) (*api.StoreFileResp, error) LookupFile(context.Context, *api.LookupFileReq) (*api.LookupFileResp, error) // contains filtered or unexported methods }
FileServiceServer is the server API for FileService service. All implementations must embed UnimplementedFileServiceServer for forward compatibility
type UnimplementedFileServiceServer ¶ added in v0.0.5
type UnimplementedFileServiceServer struct { }
UnimplementedFileServiceServer must be embedded to have forward compatible implementations.
func (UnimplementedFileServiceServer) LookupFile ¶ added in v0.0.5
func (UnimplementedFileServiceServer) LookupFile(context.Context, *api.LookupFileReq) (*api.LookupFileResp, error)
func (UnimplementedFileServiceServer) StoreFile ¶ added in v0.0.5
func (UnimplementedFileServiceServer) StoreFile(context.Context, *api.StoreFileReq) (*api.StoreFileResp, error)
type UnsafeFileServiceServer ¶ added in v0.0.18
type UnsafeFileServiceServer interface {
// contains filtered or unexported methods
}
UnsafeFileServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to FileServiceServer will result in compilation errors.