Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * @fileoverview gRPC-Web generated client stub for user
- * @enhanceable
- * @public
- */
- // Code generated by protoc-gen-grpc-web. DO NOT EDIT.
- // versions:
- // protoc-gen-grpc-web v1.5.0
- // protoc v3.19.6
- // source: user.proto
- /* eslint-disable */
- // @ts-nocheck
- const grpc = {};
- grpc.web = require('grpc-web');
- const proto = {};
- proto.user = require('./user_pb.js');
- /**
- * @param {string} hostname
- * @param {?Object} credentials
- * @param {?grpc.web.ClientOptions} options
- * @constructor
- * @struct
- * @final
- */
- proto.user.UserServiceClient =
- function(hostname, credentials, options) {
- if (!options) options = {};
- options.format = 'text';
- /**
- * @private @const {!grpc.web.GrpcWebClientBase} The client
- */
- this.client_ = new grpc.web.GrpcWebClientBase(options);
- /**
- * @private @const {string} The hostname
- */
- this.hostname_ = hostname.replace(/\/+$/, '');
- };
- /**
- * @param {string} hostname
- * @param {?Object} credentials
- * @param {?grpc.web.ClientOptions} options
- * @constructor
- * @struct
- * @final
- */
- proto.user.UserServicePromiseClient =
- function(hostname, credentials, options) {
- if (!options) options = {};
- options.format = 'text';
- /**
- * @private @const {!grpc.web.GrpcWebClientBase} The client
- */
- this.client_ = new grpc.web.GrpcWebClientBase(options);
- /**
- * @private @const {string} The hostname
- */
- this.hostname_ = hostname.replace(/\/+$/, '');
- };
- /**
- * @const
- * @type {!grpc.web.MethodDescriptor<
- * !proto.user.CreateUserRequest,
- * !proto.user.User>}
- */
- const methodDescriptor_UserService_CreateUser = new grpc.web.MethodDescriptor(
- '/user.UserService/CreateUser',
- grpc.web.MethodType.UNARY,
- proto.user.CreateUserRequest,
- proto.user.User,
- /**
- * @param {!proto.user.CreateUserRequest} request
- * @return {!Uint8Array}
- */
- function(request) {
- return request.serializeBinary();
- },
- proto.user.User.deserializeBinary
- );
- /**
- * @param {!proto.user.CreateUserRequest} request The
- * request proto
- * @param {?Object<string, string>} metadata User defined
- * call metadata
- * @param {function(?grpc.web.RpcError, ?proto.user.User)}
- * callback The callback function(error, response)
- * @return {!grpc.web.ClientReadableStream<!proto.user.User>|undefined}
- * The XHR Node Readable Stream
- */
- proto.user.UserServiceClient.prototype.createUser =
- function(request, metadata, callback) {
- return this.client_.rpcCall(this.hostname_ +
- '/user.UserService/CreateUser',
- request,
- metadata || {},
- methodDescriptor_UserService_CreateUser,
- callback);
- };
- /**
- * @param {!proto.user.CreateUserRequest} request The
- * request proto
- * @param {?Object<string, string>=} metadata User defined
- * call metadata
- * @return {!Promise<!proto.user.User>}
- * Promise that resolves to the response
- */
- proto.user.UserServicePromiseClient.prototype.createUser =
- function(request, metadata) {
- return this.client_.unaryCall(this.hostname_ +
- '/user.UserService/CreateUser',
- request,
- metadata || {},
- methodDescriptor_UserService_CreateUser);
- };
- /**
- * @const
- * @type {!grpc.web.MethodDescriptor<
- * !proto.user.GetUserRequest,
- * !proto.user.User>}
- */
- const methodDescriptor_UserService_GetUser = new grpc.web.MethodDescriptor(
- '/user.UserService/GetUser',
- grpc.web.MethodType.UNARY,
- proto.user.GetUserRequest,
- proto.user.User,
- /**
- * @param {!proto.user.GetUserRequest} request
- * @return {!Uint8Array}
- */
- function(request) {
- return request.serializeBinary();
- },
- proto.user.User.deserializeBinary
- );
- /**
- * @param {!proto.user.GetUserRequest} request The
- * request proto
- * @param {?Object<string, string>} metadata User defined
- * call metadata
- * @param {function(?grpc.web.RpcError, ?proto.user.User)}
- * callback The callback function(error, response)
- * @return {!grpc.web.ClientReadableStream<!proto.user.User>|undefined}
- * The XHR Node Readable Stream
- */
- proto.user.UserServiceClient.prototype.getUser =
- function(request, metadata, callback) {
- return this.client_.rpcCall(this.hostname_ +
- '/user.UserService/GetUser',
- request,
- metadata || {},
- methodDescriptor_UserService_GetUser,
- callback);
- };
- /**
- * @param {!proto.user.GetUserRequest} request The
- * request proto
- * @param {?Object<string, string>=} metadata User defined
- * call metadata
- * @return {!Promise<!proto.user.User>}
- * Promise that resolves to the response
- */
- proto.user.UserServicePromiseClient.prototype.getUser =
- function(request, metadata) {
- return this.client_.unaryCall(this.hostname_ +
- '/user.UserService/GetUser',
- request,
- metadata || {},
- methodDescriptor_UserService_GetUser);
- };
- /**
- * @const
- * @type {!grpc.web.MethodDescriptor<
- * !proto.user.UpdateUserRequest,
- * !proto.user.User>}
- */
- const methodDescriptor_UserService_UpdateUser = new grpc.web.MethodDescriptor(
- '/user.UserService/UpdateUser',
- grpc.web.MethodType.UNARY,
- proto.user.UpdateUserRequest,
- proto.user.User,
- /**
- * @param {!proto.user.UpdateUserRequest} request
- * @return {!Uint8Array}
- */
- function(request) {
- return request.serializeBinary();
- },
- proto.user.User.deserializeBinary
- );
- /**
- * @param {!proto.user.UpdateUserRequest} request The
- * request proto
- * @param {?Object<string, string>} metadata User defined
- * call metadata
- * @param {function(?grpc.web.RpcError, ?proto.user.User)}
- * callback The callback function(error, response)
- * @return {!grpc.web.ClientReadableStream<!proto.user.User>|undefined}
- * The XHR Node Readable Stream
- */
- proto.user.UserServiceClient.prototype.updateUser =
- function(request, metadata, callback) {
- return this.client_.rpcCall(this.hostname_ +
- '/user.UserService/UpdateUser',
- request,
- metadata || {},
- methodDescriptor_UserService_UpdateUser,
- callback);
- };
- /**
- * @param {!proto.user.UpdateUserRequest} request The
- * request proto
- * @param {?Object<string, string>=} metadata User defined
- * call metadata
- * @return {!Promise<!proto.user.User>}
- * Promise that resolves to the response
- */
- proto.user.UserServicePromiseClient.prototype.updateUser =
- function(request, metadata) {
- return this.client_.unaryCall(this.hostname_ +
- '/user.UserService/UpdateUser',
- request,
- metadata || {},
- methodDescriptor_UserService_UpdateUser);
- };
- /**
- * @const
- * @type {!grpc.web.MethodDescriptor<
- * !proto.user.DeleteUserRequest,
- * !proto.user.DeleteUserResponse>}
- */
- const methodDescriptor_UserService_DeleteUser = new grpc.web.MethodDescriptor(
- '/user.UserService/DeleteUser',
- grpc.web.MethodType.UNARY,
- proto.user.DeleteUserRequest,
- proto.user.DeleteUserResponse,
- /**
- * @param {!proto.user.DeleteUserRequest} request
- * @return {!Uint8Array}
- */
- function(request) {
- return request.serializeBinary();
- },
- proto.user.DeleteUserResponse.deserializeBinary
- );
- /**
- * @param {!proto.user.DeleteUserRequest} request The
- * request proto
- * @param {?Object<string, string>} metadata User defined
- * call metadata
- * @param {function(?grpc.web.RpcError, ?proto.user.DeleteUserResponse)}
- * callback The callback function(error, response)
- * @return {!grpc.web.ClientReadableStream<!proto.user.DeleteUserResponse>|undefined}
- * The XHR Node Readable Stream
- */
- proto.user.UserServiceClient.prototype.deleteUser =
- function(request, metadata, callback) {
- return this.client_.rpcCall(this.hostname_ +
- '/user.UserService/DeleteUser',
- request,
- metadata || {},
- methodDescriptor_UserService_DeleteUser,
- callback);
- };
- /**
- * @param {!proto.user.DeleteUserRequest} request The
- * request proto
- * @param {?Object<string, string>=} metadata User defined
- * call metadata
- * @return {!Promise<!proto.user.DeleteUserResponse>}
- * Promise that resolves to the response
- */
- proto.user.UserServicePromiseClient.prototype.deleteUser =
- function(request, metadata) {
- return this.client_.unaryCall(this.hostname_ +
- '/user.UserService/DeleteUser',
- request,
- metadata || {},
- methodDescriptor_UserService_DeleteUser);
- };
- module.exports = proto.user;
Add Comment
Please, Sign In to add comment