本文整理汇总了C#中Grpc.Core.Internal.BatchContextSafeHandle类的典型用法代码示例。如果您正苦于以下问题:C# BatchContextSafeHandle类的具体用法?C# BatchContextSafeHandle怎么用?C# BatchContextSafeHandle使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BatchContextSafeHandle类属于Grpc.Core.Internal命名空间,在下文中一共展示了BatchContextSafeHandle类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: StartUnary
public void StartUnary(BatchContextSafeHandle ctx, byte[] payload, MetadataArraySafeHandle metadataArray, WriteFlags writeFlags)
{
using (Profilers.ForCurrentThread().NewScope("CallSafeHandle.StartUnary"))
{
Native.grpcsharp_call_start_unary(this, ctx, payload, new UIntPtr((ulong)payload.Length), metadataArray, writeFlags)
.CheckOk();
}
}
示例2: HandleBatchCompletion
private static void HandleBatchCompletion(bool success, BatchContextSafeHandle ctx, BatchCompletionDelegate callback)
{
try
{
callback(success, ctx);
}
catch (Exception e)
{
Logger.Error(e, "Exception occured while invoking completion delegate.");
}
finally
{
if (ctx != null)
{
ctx.Dispose();
}
}
}
示例3: HandleBatchCompletion
private static void HandleBatchCompletion(bool success, BatchContextSafeHandle ctx, BatchCompletionDelegate callback)
{
try
{
callback(success, ctx);
}
catch (Exception e)
{
Console.WriteLine("Exception occured while invoking completion delegate: " + e);
}
finally
{
if (ctx != null)
{
ctx.Dispose();
}
}
}
示例4:
void IPlatformInvocation.grpcsharp_batch_context_recv_message_to_buffer(BatchContextSafeHandle ctx, byte[] buffer, UIntPtr bufferLen)
{
grpcsharp_batch_context_recv_message_to_buffer(ctx, buffer, bufferLen);
}
示例5: grpcsharp_batch_context_recv_initial_metadata
IntPtr IPlatformInvocation.grpcsharp_batch_context_recv_initial_metadata(BatchContextSafeHandle ctx)
{
return grpcsharp_batch_context_recv_initial_metadata(ctx);
}
示例6: grpcsharp_batch_context_server_rpc_new_request_metadata
static extern IntPtr grpcsharp_batch_context_server_rpc_new_request_metadata(BatchContextSafeHandle ctx);
示例7: grpcsharp_server_request_call
GRPCCallError IPlatformInvocation.grpcsharp_server_request_call(ServerSafeHandle server,
CompletionQueueSafeHandle cq, BatchContextSafeHandle ctx)
{
return grpcsharp_server_request_call(server, cq, ctx);
}
示例8: grpcsharp_server_shutdown_and_notify_callback
static extern void grpcsharp_server_shutdown_and_notify_callback(ServerSafeHandle server, CompletionQueueSafeHandle cq, BatchContextSafeHandle ctx);
示例9: grpcsharp_batch_context_server_rpc_new_host
static extern IntPtr grpcsharp_batch_context_server_rpc_new_host(BatchContextSafeHandle ctx); // returns const char*
示例10: grpcsharp_call_start_serverside
GRPCCallError IPlatformInvocation.grpcsharp_call_start_serverside(CallSafeHandle call,
BatchContextSafeHandle ctx)
{
return grpcsharp_call_start_serverside(call, ctx);
}
示例11: grpcsharp_call_recv_initial_metadata
GRPCCallError IPlatformInvocation.grpcsharp_call_recv_initial_metadata(CallSafeHandle call,
BatchContextSafeHandle ctx)
{
return grpcsharp_call_recv_initial_metadata(call, ctx);
}
示例12: grpcsharp_call_recv_message
GRPCCallError IPlatformInvocation.grpcsharp_call_recv_message(CallSafeHandle call,
BatchContextSafeHandle ctx)
{
return grpcsharp_call_recv_message(call, ctx);
}
示例13: grpcsharp_call_send_status_from_server
GRPCCallError IPlatformInvocation.grpcsharp_call_send_status_from_server(CallSafeHandle call,
BatchContextSafeHandle ctx, StatusCode statusCode, string statusMessage,
MetadataArraySafeHandle metadataArray, bool sendEmptyInitialMetadata)
{
return grpcsharp_call_send_status_from_server(call, ctx, statusCode, statusMessage, metadataArray,
sendEmptyInitialMetadata);
}
示例14: 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);
}
示例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);
}