Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: third_party/grpc/src/csharp/Grpc.Core/Internal/INativeCall.cs

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #region Copyright notice and license
2 // Copyright 2015, Google Inc.
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are
7 // met:
8 //
9 // * Redistributions of source code must retain the above copyright
10 // notice, this list of conditions and the following disclaimer.
11 // * Redistributions in binary form must reproduce the above
12 // copyright notice, this list of conditions and the following disclaimer
13 // in the documentation and/or other materials provided with the
14 // distribution.
15 // * Neither the name of Google Inc. nor the names of its
16 // contributors may be used to endorse or promote products derived from
17 // this software without specific prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 #endregion
32
33 using System;
34
35 namespace Grpc.Core.Internal
36 {
37 internal delegate void UnaryResponseClientHandler(bool success, ClientSideSt atus receivedStatus, byte[] receivedMessage, Metadata responseHeaders);
38
39 // Received status for streaming response calls.
40 internal delegate void ReceivedStatusOnClientHandler(bool success, ClientSid eStatus receivedStatus);
41
42 internal delegate void ReceivedMessageHandler(bool success, byte[] receivedM essage);
43
44 internal delegate void ReceivedResponseHeadersHandler(bool success, Metadata responseHeaders);
45
46 internal delegate void SendCompletionHandler(bool success);
47
48 internal delegate void ReceivedCloseOnServerHandler(bool success, bool cance lled);
49
50 /// <summary>
51 /// Abstraction of a native call object.
52 /// </summary>
53 internal interface INativeCall : IDisposable
54 {
55 void Cancel();
56
57 void CancelWithStatus(Grpc.Core.Status status);
58
59 string GetPeer();
60
61 void StartUnary(UnaryResponseClientHandler callback, byte[] payload, Met adataArraySafeHandle metadataArray, Grpc.Core.WriteFlags writeFlags);
62
63 void StartUnary(BatchContextSafeHandle ctx, byte[] payload, MetadataArra ySafeHandle metadataArray, Grpc.Core.WriteFlags writeFlags);
64
65 void StartClientStreaming(UnaryResponseClientHandler callback, MetadataA rraySafeHandle metadataArray);
66
67 void StartServerStreaming(ReceivedStatusOnClientHandler callback, byte[] payload, MetadataArraySafeHandle metadataArray, Grpc.Core.WriteFlags writeFlags );
68
69 void StartDuplexStreaming(ReceivedStatusOnClientHandler callback, Metada taArraySafeHandle metadataArray);
70
71 void StartReceiveMessage(ReceivedMessageHandler callback);
72
73 void StartReceiveInitialMetadata(ReceivedResponseHeadersHandler callback );
74
75 void StartSendInitialMetadata(SendCompletionHandler callback, MetadataAr raySafeHandle metadataArray);
76
77 void StartSendMessage(SendCompletionHandler callback, byte[] payload, Gr pc.Core.WriteFlags writeFlags, bool sendEmptyInitialMetadata);
78
79 void StartSendCloseFromClient(SendCompletionHandler callback);
80
81 void StartSendStatusFromServer(SendCompletionHandler callback, Grpc.Core .Status status, MetadataArraySafeHandle metadataArray, bool sendEmptyInitialMeta data);
82
83 void StartServerSide(ReceivedCloseOnServerHandler callback);
84 }
85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698