Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
8d829d0d
Commit
8d829d0d
authored
8 years ago
by
Jan Tattermusch
Browse files
Options
Downloads
Patches
Plain Diff
Add more Channel and Server constructor overloads
parent
d941fd87
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/csharp/Grpc.Core/Channel.cs
+24
-2
24 additions, 2 deletions
src/csharp/Grpc.Core/Channel.cs
src/csharp/Grpc.Core/Server.cs
+10
-2
10 additions, 2 deletions
src/csharp/Grpc.Core/Server.cs
with
34 additions
and
4 deletions
src/csharp/Grpc.Core/Channel.cs
+
24
−
2
View file @
8d829d0d
...
@@ -61,6 +61,17 @@ namespace Grpc.Core
...
@@ -61,6 +61,17 @@ namespace Grpc.Core
bool
shutdownRequested
;
bool
shutdownRequested
;
/// <summary>
/// Creates a channel that connects to a specific host.
/// Port will default to 80 for an unsecure channel and to 443 for a secure channel.
/// </summary>
/// <param name="target">Target of the channel.</param>
/// <param name="credentials">Credentials to secure the channel.</param>
public
Channel
(
string
target
,
ChannelCredentials
credentials
)
:
this
(
target
,
credentials
,
null
)
{
}
/// <summary>
/// <summary>
/// Creates a channel that connects to a specific host.
/// Creates a channel that connects to a specific host.
/// Port will default to 80 for an unsecure channel and to 443 for a secure channel.
/// Port will default to 80 for an unsecure channel and to 443 for a secure channel.
...
@@ -68,7 +79,7 @@ namespace Grpc.Core
...
@@ -68,7 +79,7 @@ namespace Grpc.Core
/// <param name="target">Target of the channel.</param>
/// <param name="target">Target of the channel.</param>
/// <param name="credentials">Credentials to secure the channel.</param>
/// <param name="credentials">Credentials to secure the channel.</param>
/// <param name="options">Channel options.</param>
/// <param name="options">Channel options.</param>
public
Channel
(
string
target
,
ChannelCredentials
credentials
,
IEnumerable
<
ChannelOption
>
options
=
null
)
public
Channel
(
string
target
,
ChannelCredentials
credentials
,
IEnumerable
<
ChannelOption
>
options
)
{
{
this
.
target
=
GrpcPreconditions
.
CheckNotNull
(
target
,
"target"
);
this
.
target
=
GrpcPreconditions
.
CheckNotNull
(
target
,
"target"
);
this
.
options
=
CreateOptionsDictionary
(
options
);
this
.
options
=
CreateOptionsDictionary
(
options
);
...
@@ -91,6 +102,17 @@ namespace Grpc.Core
...
@@ -91,6 +102,17 @@ namespace Grpc.Core
GrpcEnvironment
.
RegisterChannel
(
this
);
GrpcEnvironment
.
RegisterChannel
(
this
);
}
}
/// <summary>
/// Creates a channel that connects to a specific host and port.
/// </summary>
/// <param name="host">The name or IP address of the host.</param>
/// <param name="port">The port.</param>
/// <param name="credentials">Credentials to secure the channel.</param>
public
Channel
(
string
host
,
int
port
,
ChannelCredentials
credentials
)
:
this
(
host
,
port
,
credentials
,
null
)
{
}
/// <summary>
/// <summary>
/// Creates a channel that connects to a specific host and port.
/// Creates a channel that connects to a specific host and port.
/// </summary>
/// </summary>
...
@@ -98,7 +120,7 @@ namespace Grpc.Core
...
@@ -98,7 +120,7 @@ namespace Grpc.Core
/// <param name="port">The port.</param>
/// <param name="port">The port.</param>
/// <param name="credentials">Credentials to secure the channel.</param>
/// <param name="credentials">Credentials to secure the channel.</param>
/// <param name="options">Channel options.</param>
/// <param name="options">Channel options.</param>
public
Channel
(
string
host
,
int
port
,
ChannelCredentials
credentials
,
IEnumerable
<
ChannelOption
>
options
=
null
)
:
public
Channel
(
string
host
,
int
port
,
ChannelCredentials
credentials
,
IEnumerable
<
ChannelOption
>
options
)
:
this
(
string
.
Format
(
"{0}:{1}"
,
host
,
port
),
credentials
,
options
)
this
(
string
.
Format
(
"{0}:{1}"
,
host
,
port
),
credentials
,
options
)
{
{
}
}
...
...
This diff is collapsed.
Click to expand it.
src/csharp/Grpc.Core/Server.cs
+
10
−
2
View file @
8d829d0d
...
@@ -67,11 +67,19 @@ namespace Grpc.Core
...
@@ -67,11 +67,19 @@ namespace Grpc.Core
bool
startRequested
;
bool
startRequested
;
volatile
bool
shutdownRequested
;
volatile
bool
shutdownRequested
;
/// <summary>
/// Creates a new server.
/// </summary>
public
Server
()
:
this
(
null
)
{
}
/// <summary>
/// <summary>
/// Create a new server.
/// Create
s
a new server.
/// </summary>
/// </summary>
/// <param name="options">Channel options.</param>
/// <param name="options">Channel options.</param>
public
Server
(
IEnumerable
<
ChannelOption
>
options
=
null
)
public
Server
(
IEnumerable
<
ChannelOption
>
options
)
{
{
this
.
serviceDefinitions
=
new
ServiceDefinitionCollection
(
this
);
this
.
serviceDefinitions
=
new
ServiceDefinitionCollection
(
this
);
this
.
ports
=
new
ServerPortCollection
(
this
);
this
.
ports
=
new
ServerPortCollection
(
this
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment