aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/src/client.js
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-08-21 14:01:47 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-08-21 14:01:47 -0700
commit4e53265f6470a8736967f9cbc2e0797ad04755ca (patch)
tree8de7babc024e2e52b0a1389637e03f19721d83c4 /src/node/src/client.js
parent1e9dd32803afed8db333a02aeca000c9ededf2cb (diff)
Changed prefixed Client properties to distinguish private and public properties
Diffstat (limited to 'src/node/src/client.js')
-rw-r--r--src/node/src/client.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/node/src/client.js b/src/node/src/client.js
index f288104e2b..ddd28e37b8 100644
--- a/src/node/src/client.js
+++ b/src/node/src/client.js
@@ -32,7 +32,7 @@
*/
/**
- * Server module
+ * Client module
* @module
*/
@@ -272,7 +272,7 @@ function makeUnaryRequestFunction(method, serialize, deserialize) {
emitter.getPeer = function getPeer() {
return call.getPeer();
};
- this.$updateMetadata(this.$auth_uri, metadata, function(error, metadata) {
+ this.$_updateMetadata(this.$_auth_uri, metadata, function(error, metadata) {
if (error) {
call.cancel();
callback(error);
@@ -340,7 +340,7 @@ function makeClientStreamRequestFunction(method, serialize, deserialize) {
metadata = {};
}
var stream = new ClientWritableStream(call, serialize);
- this.$updateMetadata(this.$auth_uri, metadata, function(error, metadata) {
+ this.$_updateMetadata(this.$_auth_uri, metadata, function(error, metadata) {
if (error) {
call.cancel();
callback(error);
@@ -410,7 +410,7 @@ function makeServerStreamRequestFunction(method, serialize, deserialize) {
metadata = {};
}
var stream = new ClientReadableStream(call, deserialize);
- this.$updateMetadata(this.$auth_uri, metadata, function(error, metadata) {
+ this.$_updateMetadata(this.$_auth_uri, metadata, function(error, metadata) {
if (error) {
call.cancel();
stream.emit('error', error);
@@ -482,7 +482,7 @@ function makeBidiStreamRequestFunction(method, serialize, deserialize) {
metadata = {};
}
var stream = new ClientDuplexStream(call, serialize, deserialize);
- this.$updateMetadata(this.$auth_uri, metadata, function(error, metadata) {
+ this.$_updateMetadata(this.$_auth_uri, metadata, function(error, metadata) {
if (error) {
call.cancel();
stream.emit('error', error);
@@ -572,9 +572,9 @@ exports.makeClientConstructor = function(methods, serviceName) {
this.$channel = new grpc.Channel(address, credentials, options);
// Remove the optional DNS scheme, trailing port, and trailing backslash
address = address.replace(/^(dns:\/{3})?([^:\/]+)(:\d+)?\/?$/, '$2');
- this.$server_address = address;
- this.$auth_uri = 'https://' + this.server_address + '/' + serviceName;
- this.$updateMetadata = updateMetadata;
+ this.$_server_address = address;
+ this.$_auth_uri = 'https://' + this.server_address + '/' + serviceName;
+ this.$_updateMetadata = updateMetadata;
}
/**