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
6d53a5c6
Commit
6d53a5c6
authored
9 years ago
by
Jan Tattermusch
Browse files
Options
Downloads
Patches
Plain Diff
allow specifying channel options when creating a server
parent
c8f7d107
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/Internal/ServerSafeHandle.cs
+2
-2
2 additions, 2 deletions
src/csharp/Grpc.Core/Internal/ServerSafeHandle.cs
src/csharp/Grpc.Core/Server.cs
+9
-9
9 additions, 9 deletions
src/csharp/Grpc.Core/Server.cs
with
11 additions
and
11 deletions
src/csharp/Grpc.Core/Internal/ServerSafeHandle.cs
+
2
−
2
View file @
6d53a5c6
...
...
@@ -45,7 +45,7 @@ namespace Grpc.Core.Internal
internal
sealed
class
ServerSafeHandle
:
SafeHandleZeroIsInvalid
{
[
DllImport
(
"grpc_csharp_ext.dll"
)]
static
extern
ServerSafeHandle
grpcsharp_server_create
(
CompletionQueueSafeHandle
cq
,
IntPtr
args
);
static
extern
ServerSafeHandle
grpcsharp_server_create
(
CompletionQueueSafeHandle
cq
,
ChannelArgsSafeHandle
args
);
[
DllImport
(
"grpc_csharp_ext.dll"
)]
static
extern
int
grpcsharp_server_add_http2_port
(
ServerSafeHandle
server
,
string
addr
);
...
...
@@ -72,7 +72,7 @@ namespace Grpc.Core.Internal
{
}
public
static
ServerSafeHandle
NewServer
(
CompletionQueueSafeHandle
cq
,
IntPtr
args
)
public
static
ServerSafeHandle
NewServer
(
CompletionQueueSafeHandle
cq
,
ChannelArgsSafeHandle
args
)
{
return
grpcsharp_server_create
(
cq
,
args
);
}
...
...
This diff is collapsed.
Click to expand it.
src/csharp/Grpc.Core/Server.cs
+
9
−
9
View file @
6d53a5c6
...
...
@@ -52,9 +52,6 @@ namespace Grpc.Core
/// </summary>
public
const
int
PickUnusedPort
=
0
;
//readonly OpCompletionDelegate serverShutdownHandler;
//readonly OpCompletionDelegate newServerRpcHandler;
readonly
ServerSafeHandle
handle
;
readonly
object
myLock
=
new
object
();
...
...
@@ -64,11 +61,16 @@ namespace Grpc.Core
bool
startRequested
;
bool
shutdownRequested
;
public
Server
()
/// <summary>
/// Create a new server.
/// </summary>
/// <param name="options">Channel options.</param>
public
Server
(
IEnumerable
<
ChannelOption
>
options
=
null
)
{
this
.
handle
=
ServerSafeHandle
.
NewServer
(
GetCompletionQueue
(),
IntPtr
.
Zero
);
//this.newServerRpcHandler = HandleNewServerRpc;
//this.serverShutdownHandler = HandleServerShutdown;
using
(
var
channelArgs
=
ChannelOptions
.
CreateChannelArgs
(
options
))
{
this
.
handle
=
ServerSafeHandle
.
NewServer
(
GetCompletionQueue
(),
channelArgs
);
}
}
/// <summary>
...
...
@@ -141,8 +143,6 @@ namespace Grpc.Core
Preconditions
.
CheckState
(!
shutdownRequested
);
shutdownRequested
=
true
;
}
var
ctx
=
BatchContextSafeHandle
.
Create
();
handle
.
ShutdownAndNotify
(
HandleServerShutdown
);
await
shutdownTcs
.
Task
;
handle
.
Dispose
();
...
...
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