本文整理汇总了C#中Grpc.Core.Internal.CallSafeHandle类的典型用法代码示例。如果您正苦于以下问题:C# CallSafeHandle类的具体用法?C# CallSafeHandle怎么用?C# CallSafeHandle使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CallSafeHandle类属于Grpc.Core.Internal命名空间,在下文中一共展示了CallSafeHandle类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ContextPropagationToken
internal ContextPropagationToken(CallSafeHandle parentCall, DateTime deadline, CancellationToken cancellationToken, ContextPropagationOptions options)
{
this.parentCall = GrpcPreconditions.CheckNotNull(parentCall);
this.deadline = deadline;
this.cancellationToken = cancellationToken;
this.options = options ?? ContextPropagationOptions.Default;
}
示例2: ServerRpcNew
public ServerRpcNew(Server server, CallSafeHandle call, string method, string host, Timespec deadline, Metadata requestMetadata)
{
this.server = server;
this.call = call;
this.method = method;
this.host = host;
this.deadline = deadline;
this.requestMetadata = requestMetadata;
}
示例3: CreateCall
public CallSafeHandle CreateCall(CallSafeHandle parentCall, ContextPropagationFlags propagationMask, CompletionQueueSafeHandle cq, string method, string host, Timespec deadline, CallCredentialsSafeHandle credentials)
{
var result = Native.grpcsharp_channel_create_call(this, parentCall, propagationMask, cq, method, host, deadline);
if (credentials != null)
{
result.SetCredentials(credentials);
}
result.Initialize(cq);
return result;
}
示例4: ServerCallContext
internal ServerCallContext(CallSafeHandle callHandle, string method, string host, DateTime deadline, Metadata requestHeaders, CancellationToken cancellationToken,
Func<Metadata, Task> writeHeadersFunc, IHasWriteOptions writeOptionsHolder)
{
this.callHandle = callHandle;
this.method = method;
this.host = host;
this.deadline = deadline;
this.requestHeaders = requestHeaders;
this.cancellationToken = cancellationToken;
this.writeHeadersFunc = writeHeadersFunc;
this.writeOptionsHolder = writeOptionsHolder;
}
示例5: CreateCall
public CallSafeHandle CreateCall(CompletionRegistry registry, CallSafeHandle parentCall, ContextPropagationFlags propagationMask, CompletionQueueSafeHandle cq, string method, string host, Timespec deadline, CredentialsSafeHandle credentials)
{
using (Profilers.ForCurrentThread().NewScope("ChannelSafeHandle.CreateCall"))
{
var result = grpcsharp_channel_create_call(this, parentCall, propagationMask, cq, method, host, deadline);
if (credentials != null)
{
result.SetCredentials(credentials);
}
result.SetCompletionRegistry(registry);
return result;
}
}
示例6: CreateCall
public CallSafeHandle CreateCall(CompletionRegistry registry, CallSafeHandle parentCall, ContextPropagationFlags propagationMask, CompletionQueueSafeHandle cq, string method, string host, Timespec deadline)
{
var result = grpcsharp_channel_create_call(this, parentCall, propagationMask, cq, method, host, deadline);
result.SetCompletionRegistry(registry);
return result;
}
示例7: grpcsharp_channel_create_call
CallSafeHandle IPlatformInvocation.grpcsharp_channel_create_call(ChannelSafeHandle channel,
CallSafeHandle parentCall, ContextPropagationFlags propagationMask, CompletionQueueSafeHandle cq,
string method, string host, Timespec deadline)
{
return grpcsharp_channel_create_call(channel, parentCall, propagationMask, cq, method, host, deadline);
}
示例8: grpcsharp_call_set_credentials
GRPCCallError IPlatformInvocation.grpcsharp_call_set_credentials(CallSafeHandle call,
CallCredentialsSafeHandle credentials)
{
return grpcsharp_call_set_credentials(call, credentials);
}
示例9: grpcsharp_call_start_serverside
GRPCCallError IPlatformInvocation.grpcsharp_call_start_serverside(CallSafeHandle call,
BatchContextSafeHandle ctx)
{
return grpcsharp_call_start_serverside(call, ctx);
}
示例10: grpcsharp_call_recv_message
GRPCCallError IPlatformInvocation.grpcsharp_call_recv_message(CallSafeHandle call,
BatchContextSafeHandle ctx)
{
return grpcsharp_call_recv_message(call, ctx);
}
示例11: grpcsharp_call_send_close_from_client
GRPCCallError IPlatformInvocation.grpcsharp_call_send_close_from_client(CallSafeHandle call,
BatchContextSafeHandle ctx)
{
return grpcsharp_call_send_close_from_client(call, ctx);
}
示例12: grpcsharp_call_recv_initial_metadata
static extern GRPCCallError grpcsharp_call_recv_initial_metadata(CallSafeHandle call,
BatchContextSafeHandle ctx);
示例13: grpcsharp_call_send_status_from_server
static extern GRPCCallError grpcsharp_call_send_status_from_server(CallSafeHandle call,
BatchContextSafeHandle ctx, StatusCode statusCode, string statusMessage, MetadataArraySafeHandle metadataArray, bool sendEmptyInitialMetadata);
示例14: grpcsharp_call_start_duplex_streaming
GRPCCallError IPlatformInvocation.grpcsharp_call_start_duplex_streaming(CallSafeHandle call,
BatchContextSafeHandle ctx, MetadataArraySafeHandle metadataArray)
{
return grpcsharp_call_start_duplex_streaming(call, ctx, metadataArray);
}
示例15: grpcsharp_call_send_message
GRPCCallError IPlatformInvocation.grpcsharp_call_send_message(CallSafeHandle call,
BatchContextSafeHandle ctx, byte[] send_buffer, UIntPtr send_buffer_len, WriteFlags writeFlags,
bool sendEmptyInitialMetadata)
{
return grpcsharp_call_send_message(call, ctx, send_buffer, send_buffer_len, writeFlags,
sendEmptyInitialMetadata);
}