blob: 4f97eeef37f1fb77b7fcb5bff71bebdce779faf0 [file] [log] [blame]
Jan Tattermuscha7fff862015-02-13 11:08:08 -08001#region Copyright notice and license
2
Jan Tattermuschaf77b3d2015-02-13 11:22:21 -08003// Copyright 2015, Google Inc.
Jan Tattermuscha7fff862015-02-13 11:08:08 -08004// All rights reserved.
Craig Tiller190d3602015-02-18 09:23:38 -08005//
Jan Tattermuscha7fff862015-02-13 11:08:08 -08006// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met:
Craig Tiller190d3602015-02-18 09:23:38 -08009//
Jan Tattermuscha7fff862015-02-13 11:08:08 -080010// * Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12// * Redistributions in binary form must reproduce the above
13// copyright notice, this list of conditions and the following disclaimer
14// in the documentation and/or other materials provided with the
15// distribution.
16// * Neither the name of Google Inc. nor the names of its
17// contributors may be used to endorse or promote products derived from
18// this software without specific prior written permission.
Craig Tiller190d3602015-02-18 09:23:38 -080019//
Jan Tattermuscha7fff862015-02-13 11:08:08 -080020// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32#endregion
33
Jan Tattermusch8ce5e8b2015-02-05 10:56:49 -080034using System;
35
Jan Tattermusch30868622015-02-19 09:22:33 -080036namespace Grpc.Core
Jan Tattermusch8ce5e8b2015-02-05 10:56:49 -080037{
38 public enum MethodType
39 {
40 Unary,
41 ClientStreaming,
42 ServerStreaming,
43 DuplexStreaming
44 }
45
46 /// <summary>
47 /// A description of a service method.
48 /// </summary>
49 public class Method<TRequest, TResponse>
50 {
51 readonly MethodType type;
52 readonly string name;
Jan Tattermusch15111f52015-02-05 18:15:14 -080053 readonly Marshaller<TRequest> requestMarshaller;
54 readonly Marshaller<TResponse> responseMarshaller;
Jan Tattermusch8ce5e8b2015-02-05 10:56:49 -080055
Jan Tattermusch15111f52015-02-05 18:15:14 -080056 public Method(MethodType type, string name, Marshaller<TRequest> requestMarshaller, Marshaller<TResponse> responseMarshaller)
Jan Tattermusch8ce5e8b2015-02-05 10:56:49 -080057 {
58 this.type = type;
59 this.name = name;
60 this.requestMarshaller = requestMarshaller;
61 this.responseMarshaller = responseMarshaller;
62 }
63
64 public MethodType Type
65 {
66 get
67 {
68 return this.type;
69 }
70 }
71
72 public string Name
73 {
74 get
75 {
76 return this.name;
77 }
78 }
79
Jan Tattermusch15111f52015-02-05 18:15:14 -080080 public Marshaller<TRequest> RequestMarshaller
Jan Tattermusch8ce5e8b2015-02-05 10:56:49 -080081 {
82 get
83 {
84 return this.requestMarshaller;
85 }
86 }
87
Jan Tattermusch15111f52015-02-05 18:15:14 -080088 public Marshaller<TResponse> ResponseMarshaller
Jan Tattermusch8ce5e8b2015-02-05 10:56:49 -080089 {
90 get
91 {
92 return this.responseMarshaller;
93 }
94 }
95 }
96}